MIR1211
MixedFunctionCall
A dynamic call target has type mixed.
Example
Section titled “Example”<?php/** @param mixed $fn */ function f($fn){ $fn(); }How to fix
Section titled “How to fix”Type the callable, e.g. callable or Closure.
MIR1211
A dynamic call target has type mixed.
<?php/** @param mixed $fn */ function f($fn){ $fn(); }Type the callable, e.g. callable or Closure.