MIR0224
InvalidNamedArguments
Named arguments passed to a function or method tagged @no-named-arguments.
Example
Section titled “Example”<?php/** @no-named-arguments */function f(int $a){}f(a: 1); // InvalidNamedArgumentsHow to fix
Section titled “How to fix”Pass the arguments positionally.