-
Notifications
You must be signed in to change notification settings - Fork 504
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
Improve count()
narrowing of constant arrays
#3709
Merged
ondrejmirtes
merged 7 commits into
phpstan:2.1.x
from
herndlm:constant-array-count-narrowing
Mar 10, 2025
Merged
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
9534154
Improve `count()` narrowing of constant arrays
herndlm a12aaac
Consider int range offset in truthy context
herndlm 74894a3
Add another regression test
herndlm a8b9b55
Clean up a bit more aggressively
herndlm 6866fd4
Avoid specifying incorrect falsey context
herndlm f647fc8
Simplify by not using TypeTraverser
herndlm 6153190
Simplify and improve :)
herndlm 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 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 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 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 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 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 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,27 @@ | ||
<?php declare(strict_types = 1); | ||
|
||
namespace Bug3631; | ||
|
||
/** | ||
* @return array<string> | ||
*/ | ||
function someFunc(bool $flag): array | ||
{ | ||
$ids = [ | ||
['fa', 'foo', 'baz'] | ||
]; | ||
|
||
if ($flag) { | ||
$ids[] = ['foo', 'bar', 'baz']; | ||
|
||
} | ||
|
||
if (count($ids) > 1) { | ||
return array_intersect(...$ids); | ||
} | ||
|
||
return $ids[0]; | ||
} | ||
|
||
var_dump(someFunc(true)); | ||
var_dump(someFunc(false)); |
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What about adding
assertType('array{string}', $arr);
?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
good point, I already forgot. but quickly looked again and apparently it's currently
it ends up using a falsey scope here, because
count($arr) <= 1
is transformed to2 < count($arr)
and then something in the loop still skips creating a result type because it can't fully deal with falsey scopes unfortunately. If I remove thatcontinue
, it would basically come up with "cannot bearray{string, string}
" which should make it thenarray{string}
by some falsey scope filtering or so irrelevant of the new code. but that does also not work :/ and many tests for (list) counting start to fail :/ would be great to further improve this, but I was kind of stuck there..