Code Inspection: Parameters number mismatch declaration
Reports the function/method calls that take more parameters than specified in their declaration.
In the following example, the sum
function declaration uses two parameters, but the function call is provided with three parameters. Though this will not produce an error, it indicates a programming mistake.
function sum($a, $b)
{
return $a + $b;
}
sum(1, 2, 3);
Last modified: 08 December 2020