mirror of
https://github.com/danog/psalm.git
synced 2024-12-04 02:27:59 +01:00
285 B
285 B
ParadoxicalCondition
Emitted when a paradox is encountered in your programs logic that could not be caught by RedundantCondition
<?php
function foo($a, $b) : void {
if ($a && $b) {
echo "a";
} elseif ($a && $b) {
echo "cannot happen";
}
}