Commit b000c2b
Fix phpstan/phpstan#13902: Chaining phpstan-assert fails to assert types
- In TypeSpecifier::specifyTypesInCondition(), recurse into inner method calls when processing a method chain in null context, so assertions from all methods in the chain are applied
- In TypeSpecifier::specifyTypesFromAsserts(), unwrap $this mapping through method calls whose return type equals the caller type, so outer assertions resolve to the original object
- Only recurse when $expr->var is a MethodCall to avoid breaking ImpossibleCheckTypeHelper's rootExpr tracking
- New regression test in tests/PHPStan/Analyser/nsrt/bug-13902.php1 parent f08de42 commit b000c2b
File tree
2 files changed
+63
-1
lines changed- src/Analyser
- tests/PHPStan/Analyser/nsrt
2 files changed
+63
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
590 | 590 | | |
591 | 591 | | |
592 | 592 | | |
| 593 | + | |
| 594 | + | |
| 595 | + | |
593 | 596 | | |
594 | 597 | | |
595 | 598 | | |
596 | 599 | | |
597 | 600 | | |
| 601 | + | |
| 602 | + | |
| 603 | + | |
| 604 | + | |
598 | 605 | | |
599 | 606 | | |
600 | 607 | | |
| |||
1665 | 1672 | | |
1666 | 1673 | | |
1667 | 1674 | | |
1668 | | - | |
| 1675 | + | |
| 1676 | + | |
| 1677 | + | |
| 1678 | + | |
| 1679 | + | |
| 1680 | + | |
| 1681 | + | |
| 1682 | + | |
| 1683 | + | |
| 1684 | + | |
1669 | 1685 | | |
1670 | 1686 | | |
1671 | 1687 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
| 1 | + | |
| 2 | + | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
| 6 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
| 16 | + | |
| 17 | + | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
| 21 | + | |
| 22 | + | |
| 23 | + | |
| 24 | + | |
| 25 | + | |
| 26 | + | |
| 27 | + | |
| 28 | + | |
| 29 | + | |
| 30 | + | |
| 31 | + | |
| 32 | + | |
| 33 | + | |
| 34 | + | |
| 35 | + | |
| 36 | + | |
| 37 | + | |
| 38 | + | |
| 39 | + | |
| 40 | + | |
| 41 | + | |
| 42 | + | |
| 43 | + | |
| 44 | + | |
| 45 | + | |
| 46 | + | |
0 commit comments