-
Notifications
You must be signed in to change notification settings - Fork 578
Report type errors in function/method-calls on lower level, when MixedType is involved in Ternary #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
13
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.
+347
−1
Open
Report type errors in function/method-calls on lower level, when MixedType is involved in Ternary #5939
Changes from all commits
Commits
Show all changes
13 commits
Select commit
Hold shift + click to select a range
6324ede
Cover subtype-absorbed try/catch results surviving as conditional tar…
staabm 91c44f7
Report ternary argument branches whose type is hidden by mixed normal…
phpstan-bot d676451
Narrow ternary else branch via negated condition in branch-type inspe…
phpstan-bot 6f6c561
Clarify ternary branch-inspection test: benevolent vs strict string|f…
phpstan-bot d0c9f4d
revert nsrt tests.. this is a rule only change without impact on infe…
staabm 884b3cd
Update CallToFunctionParametersRuleTest.php
staabm aeeab6b
Update FunctionCallParametersCheck.php
staabm 5620a89
Update bug-11281.php
staabm fe09fa4
Update bug-11281.php
staabm 4043254
Update CallToFunctionParametersRuleTest.php
staabm 68c73ea
Cover short ternary (?:) in ternary branch inspection test
phpstan-bot 69b5b4a
Support null-coalesce in inline mixed argument check, gate behind ble…
phpstan-bot 3018907
Add method-call and static-call coverage for inline mixed argument check
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
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
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
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
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,114 @@ | ||
| <?php // lint >= 8.0 | ||
|
|
||
| declare(strict_types = 1); | ||
|
|
||
| namespace Bug11281Functions; | ||
|
|
||
| function takesInt(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. | ||
| takesInt(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. | ||
| takesInt(array_key_exists('key', $values) ? $values['key'] : 5); | ||
| } | ||
|
|
||
| /** | ||
| * @param array<string, mixed> $values | ||
| */ | ||
| function nested(array $values, bool $other, bool $another): void | ||
| { | ||
| takesInt($other ? $values['key'] : ($another ? 1 : ' nested string')); | ||
| } | ||
|
|
||
| function testShortTernary(mixed $mixed): void | ||
| { | ||
| // Short ternary (?:): the if-branch reuses the (truthy-narrowed) condition value, | ||
| // the else branch is a string passed to an int parameter, so it must be reported. | ||
| takesInt($mixed ?: ' a string'); | ||
| } | ||
|
|
||
| /** | ||
| * @param array<string, mixed> $values | ||
| */ | ||
| function testCoalesce(array $values): void | ||
| { | ||
| // The coalesce's resulting type normalizes to mixed (mixed|string), | ||
| // but the else branch is definitely a string passed to an int parameter. | ||
| takesInt($values['key'] ?? ' a string'); | ||
| } | ||
|
|
||
| /** | ||
| * @param array<string, mixed> $values | ||
| */ | ||
| function noErrorCoalesce(array $values): void | ||
| { | ||
| // Numeric-ish coercible branch must not be flagged. | ||
| takesInt($values['key'] ?? 5); | ||
| } | ||
|
|
||
| /** | ||
| * @param array<string, mixed> $values | ||
| * @param array<string, mixed> $other | ||
| */ | ||
| function nestedCoalesce(array $values, array $other): void | ||
| { | ||
| takesInt($values['key'] ?? $other['key'] ?? ' a 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, | ||
| ); | ||
| } | ||
|
|
||
| function ternaryInVariable(mixed $value, string|false $sf): void | ||
| { | ||
| // no error because the ternary is not used inline as function argument, | ||
| // but stored in a variable, which kicks in type normalization. | ||
| $result = is_resource($value) | ||
| ? $sf | ||
| : $value; | ||
|
|
||
| expectsString($result); | ||
| } | ||
Oops, something went wrong.
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.