Skip to content

MIR0227

PossiblyInvalidArrayAccess

Array access on a value that is only sometimes offset-accessible.

<?php
/** @param array|int $x */
function f($x){ return $x[0]; }

Narrow the type to an array (or ArrayAccess) before indexing.