Description
Category:
Bug
One of the function arguments does not appear to be used.
Example
function
foo
(
$a
,
$b
)
{
// $b is never used
if (
$a
) {
echo
"OK!"
;
} else {
echo
"\$a is empty!"
;
}
}