Skip to content

UnusedVariable

A variable is assigned but never read.

<?php
function compute(): int {
$temp = expensiveCall(); // $temp is never used
return 42;
}

Remove the assignment or use the variable.