mirror of
https://github.com/danog/psalm.git
synced 2024-12-03 10:07:52 +01:00
9 lines
168 B
Markdown
9 lines
168 B
Markdown
|
# TooManyArguments
|
||
|
|
||
|
Emitted when calling a function with more arguments than the function has parameters
|
||
|
|
||
|
```php
|
||
|
function foo(string $a) : void {}
|
||
|
foo("hello", 4);
|
||
|
```
|