TooManyArguments
Emitted when calling a function with more arguments than the function has parameters
<?php
function foo(string $a) : void {}
foo("hello", 4);
Emitted when calling a function with more arguments than the function has parameters
<?php
function foo(string $a) : void {}
foo("hello", 4);