mirror of
https://github.com/danog/psalm.git
synced 2024-11-27 12:55:26 +01:00
11 lines
175 B
Markdown
11 lines
175 B
Markdown
# TooManyArguments
|
|
|
|
Emitted when calling a function with more arguments than the function has parameters
|
|
|
|
```php
|
|
<?php
|
|
|
|
function foo(string $a) : void {}
|
|
foo("hello", 4);
|
|
```
|