Skip to content

MIR0222

RawObjectIteration

An object that does not implement Traversable is iterated (e.g. via foreach or yield from).

<?php
foreach (new stdClass() as $v) {} // RawObjectIteration

Iterate an array, or implement IteratorAggregate/Iterator.