1 | <?php |
||
10 | final class KvkPaginator implements KvkPaginatorInterface |
||
11 | { |
||
12 | private $itemsPerPage; |
||
13 | private $startPage; |
||
14 | private $totalItems; |
||
15 | private $items; |
||
16 | private $nextUrl; |
||
17 | private $previousUrl; |
||
18 | |||
19 | 20 | public function __construct( |
|
34 | |||
35 | 1 | public function getItemsPerPage(): int |
|
39 | |||
40 | 1 | public function getStartPage(): int |
|
44 | |||
45 | 1 | public function getTotalItems(): int |
|
49 | |||
50 | /** |
||
51 | * @return ProfileCompany[] |
||
52 | */ |
||
53 | 16 | public function getItems(): array |
|
57 | |||
58 | 2 | public function getNextUrl(): string |
|
66 | |||
67 | 2 | public function getPreviousUrl(): string |
|
75 | } |
||
76 |