123456789101112131415161718192021222324252627282930 |
- <?php
- declare(strict_types=1);
- namespace Hyperf\Contract;
- interface LengthAwarePaginatorInterface extends PaginatorInterface
- {
-
- public function getUrlRange(int $start, int $end): array;
-
- public function total(): int;
-
- public function lastPage(): int;
- }
|