--TEST-- Calling generator through magic __call() --FILE-- gen() as $n) { var_dump($n); } $a->gen(); ?> --EXPECT-- int(0) int(1) int(2) int(3) int(4)