We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
1 | <?php |
||
16 | final class ResultIterator implements Iterator |
||
17 | { |
||
18 | /** |
||
19 | * @var Result[] |
||
20 | */ |
||
21 | private $children; |
||
22 | |||
23 | /** |
||
24 | * Initializes the object. |
||
25 | * |
||
26 | * @param Result $result |
||
27 | */ |
||
28 | public function __construct(Result $result) |
||
32 | |||
33 | public function current(): ?Result |
||
42 | |||
43 | public function next(): ?Result |
||
52 | |||
53 | public function key() |
||
62 | |||
63 | public function valid(): bool |
||
67 | |||
68 | public function rewind(): void |
||
72 | } |
||
73 |