-
Notifications
You must be signed in to change notification settings - Fork 557
Fix phpstan/phpstan#14362: Intersection loses __invoke() return type
#5291
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
VincentLanglet
merged 12 commits into
phpstan:2.1.x
from
phpstan-bot:create-pull-request/patch-q79a61v
Mar 25, 2026
+113
−3
Merged
Changes from all commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
57dde1b
Fix intersection type losing __invoke() return type
phpstan-bot 430589e
Avoid array_merge inside loop in IntersectionType::getCallableParamet…
phpstan-bot eb8304a
Add tests for only-callable and only-maybe-callable intersection types
phpstan-bot 3d08c56
Use real classes with native intersection return types instead of inl…
phpstan-bot 04f8a96
Fix impossible A&E intersection type in test
phpstan-bot b260dad
test union of intersection types
staabm a27e585
Update bug-14362.php
staabm c104db1
Use intersection
VincentLanglet 19cd3ba
Fix
VincentLanglet 612804c
fix build
staabm 04efad0
Address review: return TrivialParametersAcceptor for maybe-callable t…
phpstan-bot 31fdf28
Fix build
VincentLanglet File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,84 @@ | ||
| <?php // lint >= 8.1 | ||
|
|
||
| declare(strict_types = 1); | ||
|
|
||
| namespace Bug14362; | ||
|
|
||
| use function PHPStan\Testing\assertType; | ||
|
|
||
| interface A | ||
| { | ||
| public function __invoke(B $b): int; | ||
| } | ||
|
|
||
| interface B | ||
| { | ||
|
|
||
| } | ||
|
|
||
| class C { | ||
| public static function u(): A&B { | ||
| return new class() implements A, B { | ||
| public function __invoke(B $b): int { | ||
| return 1; | ||
| } | ||
| }; | ||
| } | ||
| } | ||
|
|
||
| class D { | ||
| public static function u(): A { | ||
| return new class() implements A { | ||
| public function __invoke(B $b): int { | ||
| return 1; | ||
| } | ||
| }; | ||
| } | ||
| } | ||
|
|
||
| interface E | ||
| { | ||
| public function __invoke(B $b, bool $option = true): int; | ||
| } | ||
|
|
||
| interface F | ||
| { | ||
|
|
||
| } | ||
|
|
||
| class G { | ||
| public static function u(): A&E { | ||
| return new class() implements A, E { | ||
| public function __invoke(B $b, bool $option = true): int { | ||
| return 1; | ||
| } | ||
| }; | ||
| } | ||
| } | ||
|
|
||
| class H { | ||
| public static function u(): B&F { | ||
| return new class() implements B, F { | ||
| }; | ||
| } | ||
| } | ||
|
|
||
| function doBar() : void { | ||
| assertType('Closure(Bug14362\B): int', C::u()(...)); | ||
| assertType('Closure(Bug14362\B): int', D::u()(...)); | ||
|
|
||
| // Intersection with two yes-callable compatible | ||
| assertType('Closure(Bug14362\B, bool=): int', G::u()(...)); | ||
|
|
||
| // Intersection with only maybe-callable types (neither has __invoke) | ||
| assertType('Closure', H::u()(...)); | ||
| } | ||
|
|
||
| function doFoo(string $c):void { | ||
| if (is_callable($c)) { | ||
| $a = $c; | ||
| } else { | ||
| $a = C::u()(...); | ||
| } | ||
| assertType('callable-string|(Closure(Bug14362\B): int)', $a); | ||
| } | ||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.