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