| Conditions | 2 |
| Paths | 2 |
| Total Lines | 8 |
| Code Lines | 6 |
| Lines | 8 |
| Ratio | 100 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 45 | View Code Duplication | public function next() {
|
|
| 46 | $this->position++; |
||
| 47 | if ($this->currentDataPos() === 0) {
|
||
| 48 | $this->page++; |
||
| 49 | $offset = $this->page * self::LIMIT; |
||
| 50 | $this->data = $this->mapper->findUserIds($this->backend, true, self::LIMIT, $offset); |
||
| 51 | } |
||
| 52 | } |
||
| 53 | } |