Conditions | 3 |
Paths | 2 |
Total Lines | 10 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
60 | public function next() |
||
61 | { |
||
62 | $this->currentIndex++; |
||
63 | $this->totalIndex++; |
||
64 | |||
65 | $items = $this->currentPage->getItems(); |
||
66 | |||
67 | if (!isset($items[$this->currentIndex]) && $this->currentPage->hasNextPage()) { |
||
68 | $this->currentIndex = 0; |
||
69 | $this->currentPage = $this->currentPage->getNextPage(); |
||
70 | } |
||
107 |