php-src/Zend/zend_generators.stub.php
2020-04-11 10:23:51 +02:00

26 lines
480 B
PHP

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