Skip to content

MIR0224

InvalidNamedArguments

Named arguments passed to a function or method tagged @no-named-arguments.

<?php
/** @no-named-arguments */
function f(int $a){}
f(a: 1); // InvalidNamedArguments

Pass the arguments positionally.