MIR0407
UnevaluatedCode
A switch/match arm can never be reached given the subject’s inferred type (e.g. case "int" for gettype(), which returns "integer").
Example
Section titled “Example”<?phpswitch (gettype($x)) { case 'int': break; } // never matchesHow to fix
Section titled “How to fix”Use the value the subject can actually take ('integer').