1 | <?php |
||
2 | |||
3 | namespace Zenstruck\Porpaginas; |
||
4 | |||
5 | /** |
||
6 | * @author Kevin Bond <[email protected]> |
||
7 | */ |
||
8 | trait ResultPaginator |
||
9 | { |
||
10 | 7 | public function paginate(int $page = 1, int $limit = Pager::DEFAULT_LIMIT): Pager |
|
11 | { |
||
12 | 7 | return new Pager($this, $page, $limit); |
|
0 ignored issues
–
show
Bug
introduced
by
![]() |
|||
13 | } |
||
14 | } |
||
15 |