Hi,
Could it be possible to display the parameters of a function as unused variables in the function definition?
// $b is unused, but is displayed normally, could it be displayed like $c ?
function foo($a, $b)
{
// $c is unused, is displayed greyed out
$c = 0;
return $a;
}
Regards