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