-
-
Notifications
You must be signed in to change notification settings - Fork 946
Closed
Labels
Milestone
Description
$s = rand(0, 1) ? 0 : 1;
if ($s) {
$s = 3;
}
if ($s === 1) {}Expected: Strict comparison using === between 0|3 and 1 will always evaluate to false.
Actual: No issue
Fixed by making the comparison explicit:
$s = rand(0, 1) ? 0 : 1;
if ($s === 1) {
$s = 3;
}
if ($s === 1) {}Reactions are currently unavailable