You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have this loop in a project and I'm getting two errors, a [RedundantCondition and a UnusedVariable. https://psalm.dev/r/b420e29429 Both are wrong in this specific situation.
The text was updated successfully, but these errors were encountered:
<?phpdo {
$run = false;
if (time() % 3 === 0) {
continue;
}
$run = true;
} while ($run);
Psalm output (using commit 765dcbf):
ERROR: RedundantCondition - 11:10 - Type true for $run is never falsy
INFO: UnusedVariable - 4:5 - $run is never referenced or the value is not used
I have this loop in a project and I'm getting two errors, a
[RedundantCondition
and aUnusedVariable
. https://psalm.dev/r/b420e29429 Both are wrong in this specific situation.The text was updated successfully, but these errors were encountered: