UnusedVariable
A variable is assigned but never read.
Example
Section titled “Example”<?phpfunction compute(): int { $temp = expensiveCall(); // $temp is never used return 42;}How to fix
Section titled “How to fix”Remove the assignment or use the variable.