summaryrefslogtreecommitdiff
path: root/Zend/zend_generators.stub.php
blob: 759bd4cd4868cbfed7ba2d8a99b4ac2608d6762a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?php

final class Generator implements Iterator
{
    function rewind(): void {}

    function valid(): bool {}

    function current() {}

    function key() {}

    function next(): void {}

    function send($value) {}

    function throw(Throwable $exception) {}

    function getReturn() {}
}