1
0
mirror of https://github.com/danog/psalm.git synced 2024-12-04 02:27:59 +01:00
psalm/docs/running_psalm/issues/ParadoxicalCondition.md
2021-10-02 10:01:05 +02:00

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";
    }
}