1 | <?php |
||
12 | class PaginationLinks |
||
13 | { |
||
14 | /** |
||
15 | * @Expose() |
||
16 | * @Type("App\Model\Link") |
||
17 | */ |
||
18 | protected $self; |
||
19 | |||
20 | /** |
||
21 | * @Expose() |
||
22 | * @Type("App\Model\Link") |
||
23 | */ |
||
24 | protected $first; |
||
25 | |||
26 | /** |
||
27 | * @Expose() |
||
28 | * @Type("App\Model\Link") |
||
29 | */ |
||
30 | protected $prev; |
||
31 | |||
32 | /** |
||
33 | * @Expose() |
||
34 | * @Type("App\Model\Link") |
||
35 | */ |
||
36 | protected $next; |
||
37 | |||
38 | /** |
||
39 | * @Expose() |
||
40 | * @Type("App\Model\Link") |
||
41 | */ |
||
42 | protected $last; |
||
43 | |||
44 | /** |
||
45 | * @return mixed |
||
46 | */ |
||
47 | public function getSelf() |
||
51 | |||
52 | /** |
||
53 | * @param $self |
||
54 | * @return $this |
||
55 | */ |
||
56 | 8 | public function setSelf($self) |
|
62 | |||
63 | /** |
||
64 | * @return mixed |
||
65 | */ |
||
66 | public function getFirst() |
||
70 | |||
71 | /** |
||
72 | * @param $first |
||
73 | * @return $this |
||
74 | */ |
||
75 | 8 | public function setFirst($first) |
|
81 | |||
82 | /** |
||
83 | * @return mixed |
||
84 | */ |
||
85 | public function getPrev() |
||
89 | |||
90 | /** |
||
91 | * @param $prev |
||
92 | * @return $this |
||
93 | */ |
||
94 | 8 | public function setPrev($prev) |
|
100 | |||
101 | /** |
||
102 | * @return mixed |
||
103 | */ |
||
104 | public function getNext() |
||
108 | |||
109 | /** |
||
110 | * @param $next |
||
111 | * @return $this |
||
112 | */ |
||
113 | 8 | public function setNext($next) |
|
119 | |||
120 | /** |
||
121 | * @return mixed |
||
122 | */ |
||
123 | public function getLast() |
||
127 | |||
128 | /** |
||
129 | * @param $last |
||
130 | * @return $this |
||
131 | */ |
||
132 | 8 | public function setLast($last) |
|
138 | } |
||
139 |