MIR1704
ImpureFunctionCall
A @pure function calls a non-pure function.
Example
Section titled “Example”<?php/** @pure */ function f(){ return time(); }How to fix
Section titled “How to fix”Call only pure functions, or drop @pure.
MIR1704
A @pure function calls a non-pure function.
<?php/** @pure */ function f(){ return time(); }Call only pure functions, or drop @pure.