UnreachableCode
Code appears after an unconditional return, throw, or exit.
Example
Section titled “Example”<?phpfunction early(): int { return 1; $x = 2; // never executed}How to fix
Section titled “How to fix”Remove the unreachable statements or restructure the control flow.