mirror of
https://github.com/danog/psalm.git
synced 2024-12-02 09:37:59 +01:00
11 lines
165 B
Markdown
11 lines
165 B
Markdown
# TooFewArguments
|
|
|
|
Emitted when calling a function with fewer arguments than the function has parameters
|
|
|
|
```php
|
|
<?php
|
|
|
|
function foo(string $a) : void {}
|
|
foo();
|
|
```
|