php-src/Zend/zend_generators.stub.php
2020-04-03 17:59:30 +02:00

26 lines
424 B
PHP

<?php
final class Generator implements Iterator
{
function rewind(): void {}
function valid(): bool {}
/** @return mixed */
function current() {}
/** @return mixed */
function key() {}
function next(): void {}
/** @return mixed */
function send($value) {}
/** @return mixed */
function throw(Throwable $exception) {}
/** @return mixed */
function getReturn() {}
}