<?php function test(): \Generator { if (true) { yield; } foreach (range(1, 20) as $i) { yield $i; } } var_dump(test()); var_dump(test()->valid());
You have javascript disabled. You will not be able to edit any code.