| Conditions | 4 |
| Paths | 3 |
| Total Lines | 11 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 5 |
| CRAP Score | 4 |
| Changes | 2 | ||
| Bugs | 2 | Features | 0 |
| 1 | <?php declare(strict_types=1); |
||
| 54 | 11 | public function next(): void |
|
| 55 | { |
||
| 56 | 11 | if (!isset($this->entries)) { |
|
| 57 | // Shouldn't happen if `prepareNext()` works correctly |
||
| 58 | return; // @codeCoverageIgnore |
||
| 59 | } |
||
| 60 | |||
| 61 | 11 | $this->entries->next(); |
|
| 62 | |||
| 63 | 11 | while (!$this->entries->valid() && $this->items->valid()) { |
|
| 64 | 11 | $this->prepareNext(); |
|
| 65 | } |
||
| 111 |