We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
| 1 | <?php |
||
| 9 | final class ResultIterator implements RecursiveIterator, Countable |
||
| 10 | { |
||
| 11 | /** |
||
| 12 | * @var Result[] |
||
| 13 | */ |
||
| 14 | private $children; |
||
| 15 | |||
| 16 | public function __construct(Result $result) |
||
| 20 | |||
| 21 | public function current() |
||
| 25 | |||
| 26 | public function next() |
||
| 30 | |||
| 31 | public function key() |
||
| 37 | |||
| 38 | public function valid(): bool |
||
| 44 | |||
| 45 | public function rewind() |
||
| 49 | |||
| 50 | public function hasChildren(): bool |
||
| 56 | |||
| 57 | public function getChildren(): ResultIterator |
||
| 61 | |||
| 62 | public function count(): int |
||
| 66 | } |
||
| 67 |