mirror of
https://github.com/danog/psalm.git
synced 2024-11-27 04:45:20 +01:00
26f8e5b333
This is the opposite of === true and works the same.
313 B
313 B
RedundantIdentityWithTrue
Emitted when comparing a known boolean with true and the strictBinaryOperands
flag is set to true.
<?php
function returnsABool(): bool {
return rand(1, 2) === 1;
}
if (returnsABool() === true) {
echo "hi!";
}
if (returnsABool() !== false) {
echo "hi!";
}