mirror of
https://github.com/danog/psalm.git
synced 2024-12-13 09:47:29 +01:00
13 lines
240 B
Markdown
13 lines
240 B
Markdown
|
# InvalidNamedArgument
|
||
|
|
||
|
Emitted when a supplied function/method argument name is incompatible with the function/method signature.
|
||
|
|
||
|
```php
|
||
|
<?php
|
||
|
|
||
|
function takesArguments(string $name, int $age) {}
|
||
|
|
||
|
takesArguments(name: "hello", ag: 5);
|
||
|
```
|
||
|
|