MIR0222
RawObjectIteration
An object that does not implement Traversable is iterated (e.g. via foreach or yield from).
Example
Section titled “Example”<?phpforeach (new stdClass() as $v) {} // RawObjectIterationHow to fix
Section titled “How to fix”Iterate an array, or implement IteratorAggregate/Iterator.