@@ -50,31 +50,31 @@ PaginatorInterface
50
50
### All methods:
51
51
``` php
52
52
53
- public function getTotalRecords(): int;
53
+ public function getTotalRecords(): int;
54
54
55
- public function getItemsPerPage(): int;
55
+ public function getItemsPerPage(): int;
56
56
57
- public function getCurrentPage(): int;
57
+ public function getCurrentPage(): int;
58
58
59
- public function setCurrentPage(int $currentPage): PaginatorInterface;
59
+ public function setCurrentPage(int $currentPage): PaginatorInterface;
60
60
61
- public function setTotalRecords(int $totalRecords): PaginatorInterface;
61
+ public function setTotalRecords(int $totalRecords): PaginatorInterface;
62
62
63
- public function setItemsPerPage(int $itemsPerPage): PaginatorInterface;
63
+ public function setItemsPerPage(int $itemsPerPage): PaginatorInterface;
64
64
65
- public function hasPrev(): bool;
65
+ public function hasPrev(): bool;
66
66
67
- public function hasNext(): bool;
67
+ public function hasNext(): bool;
68
68
69
- public function getNextPage(): int;
69
+ public function getNextPage(): int;
70
70
71
- public function getPrevPage(): int;
71
+ public function getPrevPage(): int;
72
72
73
- public function getLastPage(): int;
73
+ public function getLastPage(): int;
74
74
75
- public function getFirstPage(): int;
75
+ public function getFirstPage(): int;
76
76
77
- public function getOffset(): int;
77
+ public function getOffset(): int;
78
78
79
- public function getTotalPages(): int;
79
+ public function getTotalPages(): int;
80
80
```
0 commit comments