Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
28 | public function setCount($count) |
||
29 | { |
||
30 | $this->count = $count; |
||
31 | $this->last = ceil($count / $this->pageSize); |
||
32 | $this->current = min($this->last, $this->current); |
||
33 | $this->prev = max(1, $this->current - 1); |
||
34 | $this->next = min($this->last, $this->current + 1); |
||
35 | $this->offset = $this->pageSize * ($this->current - 1); |
||
36 | } |
||
38 |