1
0
mirror of https://github.com/danog/psalm.git synced 2024-12-02 17:52:45 +01:00
psalm/docs/running_psalm/issues/InvalidNamedArgument.md
2021-01-29 11:39:46 +01:00

247 B

InvalidNamedArgument

Emitted when a supplied function/method argument name is incompatible with the function/method signature.

<?php

function takesArguments(string $name, int $age) : void {}

takesArguments(name: "hello", ag: 5);