<?php class FooCls {} function foo(): iterable { yield new FooCls => 1; yield new FooCls => 2; yield new FooCls => 3; yield new FooCls => 4; } $iterator = foo(); assert($iterator instanceof Iterator); var_dump($iterator->key());
You have javascript disabled. You will not be able to edit any code.