Skip to content

Latest commit

 

History

History
12 lines (7 loc) · 247 Bytes

InvalidNamedArgument.md

File metadata and controls

12 lines (7 loc) · 247 Bytes

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);