-
Notifications
You must be signed in to change notification settings - Fork 578
Cover subtype-absorbed try/catch results surviving as conditional targets under if, &&, and ternary guards
#5939
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
Open
phpstan-bot
wants to merge
4
commits into
phpstan:2.2.x
Choose a base branch
from
phpstan-bot:create-pull-request/patch-4zzdt1w
base: 2.2.x
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+191
−0
Open
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
474bcf5
Cover subtype-absorbed try/catch results surviving as conditional tar…
staabm 2748eab
Report ternary argument branches whose type is hidden by mixed normal…
phpstan-bot 9a764f9
Narrow ternary else branch via negated condition in branch-type inspe…
phpstan-bot d1df3ed
Clarify ternary branch-inspection test: benevolent vs strict string|f…
phpstan-bot 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
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,68 @@ | ||
| <?php // lint >= 8.0 | ||
|
|
||
| declare(strict_types = 1); | ||
|
|
||
| namespace Bug11281Functions; | ||
|
|
||
| function sayHello(int $i): void | ||
| { | ||
| } | ||
|
|
||
| /** | ||
| * @param array<string, mixed> $values | ||
| */ | ||
| function test(array $values): void | ||
| { | ||
| // The ternary's resulting type normalizes to mixed (mixed|string), | ||
| // but the else branch is definitely a string passed to an int parameter. | ||
| sayHello(array_key_exists('key', $values) ? $values['key'] : ' a string'); | ||
| } | ||
|
|
||
| /** | ||
| * @param array<string, mixed> $values | ||
| */ | ||
| function noError(array $values): void | ||
| { | ||
| // Numeric-ish coercible branches must not be flagged. | ||
| sayHello(array_key_exists('key', $values) ? $values['key'] : 5); | ||
| } | ||
|
|
||
| /** | ||
| * @param array<string, mixed> $values | ||
| */ | ||
| function nested(array $values, bool $other, bool $another): void | ||
| { | ||
| sayHello($other ? $values['key'] : ($another ? 1 : ' nested string')); | ||
| } | ||
|
|
||
| function expectsString(string $s): void | ||
| { | ||
| } | ||
|
|
||
| function benevolentBranchNotReported(mixed $value): void | ||
| { | ||
| // stream_get_contents() returns a *benevolent* string|false. PHPStan intentionally | ||
| // accepts benevolent unions for a string parameter, so the equivalent direct call | ||
| // expectsString(stream_get_contents($r)) is error-free too — reporting it here would | ||
| // re-introduce the pg_escape_bytea false positive this branch inspection guards | ||
| // against. is_resource() also narrows asymmetrically (@phpstan-assert-if-true only), | ||
| // so the else branch must keep the type the ternary actually produces (mixed, | ||
| // accepted) instead of a spurious narrowing. No error should be reported here. | ||
| expectsString( | ||
| is_resource($value) | ||
| ? stream_get_contents($value) | ||
| : $value, | ||
|
staabm marked this conversation as resolved.
|
||
| ); | ||
| } | ||
|
|
||
| function strictFalseBranchReported(mixed $value, string|false $sf): void | ||
| { | ||
| // A *strict* (non-benevolent) string|false branch is not accepted by the string | ||
| // parameter, so branch inspection reports it even though is_resource() narrows | ||
| // asymmetrically and the ternary's resulting type normalizes to mixed. | ||
| expectsString( | ||
| is_resource($value) | ||
| ? $sf | ||
| : $value, | ||
| ); | ||
| } | ||
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.