1 | <?php |
||
19 | final class PagePagination implements PaginationInterface |
||
20 | { |
||
21 | const DEFAULT_PAGE = "1"; |
||
22 | const DEFAULT_OFFSET = "0"; |
||
23 | |||
24 | /** |
||
25 | * @var string |
||
26 | */ |
||
27 | private $page = self::DEFAULT_PAGE; |
||
28 | |||
29 | public function getPage(): string |
||
33 | |||
34 | public function setPage(string $page): self |
||
40 | } |
||
41 |