-
-
Notifications
You must be signed in to change notification settings - Fork 946
Closed
phpstan/phpstan-src
#1651Labels
Milestone
Description
Bug report
array_* false positive
while (count($arguments) > 0) {
$words .= array_pop($arguments);
if (count($arguments) > 0) {
$words .= ' ';
}
}Code snippet that reproduces the problem
$arguments = ['x', 'y'];
$words = '';
while (count($arguments) > 0) {
$words .= array_pop($arguments);
if (count($arguments) > 0) {
$words .= ' ';
}
}
echo $words;https://phpstan.org/r/172e2161-c350-4466-8867-de074489c34f
Expected output
No error
Reactions are currently unavailable