We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
| 1 | <?php |
||
| 18 | final class ResultIterator implements RecursiveIterator, Countable |
||
| 19 | { |
||
| 20 | /** |
||
| 21 | * @var Result[] |
||
| 22 | */ |
||
| 23 | private $children; |
||
| 24 | |||
| 25 | public function __construct(Result $result) |
||
| 29 | |||
| 30 | public function current(): ?Result |
||
| 39 | |||
| 40 | public function next(): ?Result |
||
| 49 | |||
| 50 | public function key() |
||
| 59 | |||
| 60 | public function valid(): bool |
||
| 64 | |||
| 65 | public function rewind(): void |
||
| 69 | |||
| 70 | public function hasChildren(): bool |
||
| 76 | |||
| 77 | public function getChildren(): ResultIterator |
||
| 86 | |||
| 87 | public function count(): int |
||
| 91 | } |
||
| 92 |