Skip to content

MIR0223

PossiblyRawObjectIteration

A value that might be a non-iterable object is iterated.

<?php
/** @param object|array $x */
function f($x){ foreach ($x as $v) {} }

Narrow the type so only Traversable/arrays remain before iterating.