It should be noted that next() sends an implicit null into the generator to ensure that code execution isn't blocked if the generator is expecting a value to be sent into it and the code doesn't execute any send()
(PHP 5 >= 5.5.0, PHP 7, PHP 8)
Generator::next — Setzt die Ausführung eines Generators fort
Der Aufruf von Generator::next() hat denselben
Effekt wie der Aufruf von Generator::send() mit
null
als Argument.
Diese Funktion besitzt keine Parameter.
Es wird kein Wert zurückgegeben.
It should be noted that next() sends an implicit null into the generator to ensure that code execution isn't blocked if the generator is expecting a value to be sent into it and the code doesn't execute any send()