MIR0223
PossiblyRawObjectIteration
A value that might be a non-iterable object is iterated.
Example
Section titled “Example”<?php/** @param object|array $x */function f($x){ foreach ($x as $v) {} }How to fix
Section titled “How to fix”Narrow the type so only Traversable/arrays remain before iterating.