Description
Category:
Bug
A variable is defined as global in a function but does not appear to be used.
Example
function
multiplyNum
(
$n
)
{
global
$multiplier
;
// $multiplier is never used in the function
return
$n
*
2
;
}