Skip to content

Commit 12ade8a

Browse files
committed
paginator
1 parent f5f7b33 commit 12ade8a

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

README.md

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -50,31 +50,31 @@ PaginatorInterface
5050
### All methods:
5151
```php
5252

53-
public function getTotalRecords(): int;
53+
public function getTotalRecords(): int;
5454

55-
public function getItemsPerPage(): int;
55+
public function getItemsPerPage(): int;
5656

57-
public function getCurrentPage(): int;
57+
public function getCurrentPage(): int;
5858

59-
public function setCurrentPage(int $currentPage): PaginatorInterface;
59+
public function setCurrentPage(int $currentPage): PaginatorInterface;
6060

61-
public function setTotalRecords(int $totalRecords): PaginatorInterface;
61+
public function setTotalRecords(int $totalRecords): PaginatorInterface;
6262

63-
public function setItemsPerPage(int $itemsPerPage): PaginatorInterface;
63+
public function setItemsPerPage(int $itemsPerPage): PaginatorInterface;
6464

65-
public function hasPrev(): bool;
65+
public function hasPrev(): bool;
6666

67-
public function hasNext(): bool;
67+
public function hasNext(): bool;
6868

69-
public function getNextPage(): int;
69+
public function getNextPage(): int;
7070

71-
public function getPrevPage(): int;
71+
public function getPrevPage(): int;
7272

73-
public function getLastPage(): int;
73+
public function getLastPage(): int;
7474

75-
public function getFirstPage(): int;
75+
public function getFirstPage(): int;
7676

77-
public function getOffset(): int;
77+
public function getOffset(): int;
7878

79-
public function getTotalPages(): int;
79+
public function getTotalPages(): int;
8080
```

0 commit comments

Comments
 (0)