MIR0227
PossiblyInvalidArrayAccess
Array access on a value that is only sometimes offset-accessible.
Example
Section titled “Example”<?php/** @param array|int $x */function f($x){ return $x[0]; }How to fix
Section titled “How to fix”Narrow the type to an array (or ArrayAccess) before indexing.