TooFewArguments
A call provides fewer arguments than the function requires.
Example
Section titled “Example”<?phpfunction add(int $a, int $b): int { return $a + $b; }
add(1); // missing second argumentHow to fix
Section titled “How to fix”Provide all required arguments, or make the missing parameter optional.