Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
58 | public function __construct(int $total, int $size, int $prev, int $page, int $next, int $last, array $items) |
||
59 | { |
||
60 | $this->total = $total; |
||
61 | $this->size = $size; |
||
62 | $this->prev = $prev; |
||
63 | $this->page = $page; |
||
64 | $this->next = $next; |
||
65 | $this->last = $last; |
||
66 | $this->items = $items; |
||
67 | } |
||
140 |