Skip to content

Latest commit

 

History

History
12 lines (9 loc) · 235 Bytes

ParadoxicalCondition.md

File metadata and controls

12 lines (9 loc) · 235 Bytes

ParadoxicalCondition

Emitted when a paradox is encountered in your programs logic that could not be caught by RedundantCondition

<?php

function foo($a) : void {
    if ($a) return;
    if ($a) echo "cannot happen";
}