MIR1212
MixedReturnStatement
A mixed value is returned from a function with a typed return.
Example
Section titled “Example”<?phpfunction f(): int { /** @var mixed $x */ return $x; }How to fix
Section titled “How to fix”Narrow the value to the declared return type.