<?php class A { public function get(): iterable { return [17]; } } class B extends A { public function get(): iterable { yield 42; } } echo iterator_to_array((new B)->get())[0];
You have javascript disabled. You will not be able to edit any code.