1 | <?php |
||
22 | class PaginationDecorator extends RequestDecorator |
||
23 | { |
||
24 | /** |
||
25 | * Sets page number and max results per page parameters. |
||
26 | * |
||
27 | * @param int $offset Offset of rows |
||
28 | * @param int $length Length of rows |
||
29 | * |
||
30 | * @return self |
||
31 | */ |
||
32 | public function addPagination($offset, $length) |
||
41 | } |
||
42 |