1 | <?php |
||
8 | class CorporationCollection 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) |
||
45 | |||
46 | // by Warringer\Types\Long |
||
47 | public function setTotalCount($totalCount) |
||
51 | |||
52 | // by Warringer\Types\Reference |
||
53 | public function setNext($next) |
||
57 | |||
58 | // by Warringer\Types\Reference |
||
59 | public function setPrevious($previous) |
||
63 | |||
64 | } |
||
65 |