mirror of
https://github.com/php/php-src.git
synced 2024-11-30 21:35:36 +08:00
b3718430de
Closes GH-5618
23 lines
431 B
PHP
23 lines
431 B
PHP
<?php
|
|
|
|
/** @generate-function-entries */
|
|
|
|
final class Generator implements Iterator
|
|
{
|
|
public function rewind(): void {}
|
|
|
|
public function valid(): bool {}
|
|
|
|
public function current(): mixed {}
|
|
|
|
public function key(): mixed {}
|
|
|
|
public function next(): void {}
|
|
|
|
public function send(mixed $value): mixed {}
|
|
|
|
public function throw(Throwable $exception): mixed {}
|
|
|
|
public function getReturn(): mixed {}
|
|
}
|