1 | <?php |
||
9 | final class KvkResponse implements ResponseInterface |
||
10 | { |
||
11 | private $itemsPerPage; |
||
12 | private $startPage; |
||
13 | private $totalItems; |
||
14 | private $items; |
||
15 | private $nextUrl; |
||
16 | private $previousUrl; |
||
17 | |||
18 | 20 | public function __construct( |
|
33 | |||
34 | 1 | public function getItemsPerPage(): int |
|
38 | |||
39 | 1 | public function getStartPage(): int |
|
43 | |||
44 | 1 | public function getTotalItems(): int |
|
48 | |||
49 | /** |
||
50 | * @return ProfileCompany[] |
||
51 | */ |
||
52 | 16 | public function getItems(): array |
|
56 | |||
57 | 2 | public function getNextUrl(): ?string |
|
61 | |||
62 | 2 | public function getPreviousUrl(): ?string |
|
66 | } |
||
67 |