1 | <?php |
||
8 | class ItemGroupCollection extends Base |
||
9 | { |
||
10 | public $pageCount; |
||
11 | |||
12 | public $items = []; |
||
13 | |||
14 | public $totalCount; |
||
15 | |||
16 | public $next; |
||
17 | |||
18 | public $previous; |
||
19 | |||
20 | // by Warringer\Types\Long |
||
21 | public function setPageCount($pageCount) |
||
25 | |||
26 | // by Warringer\Types\ArrayType |
||
27 | public function setItems($items) |
||
36 | |||
37 | // by Warringer\Types\Long |
||
38 | public function setTotalCount($totalCount) |
||
42 | |||
43 | // by Warringer\Types\Reference |
||
44 | public function setNext($next) |
||
48 | |||
49 | // by Warringer\Types\Reference |
||
50 | public function setPrevious($previous) |
||
54 | |||
55 | } |
||
56 |