| Total Complexity | 3 |
| Total Lines | 20 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 6 | trait PaginationTrait |
||
| 7 | { |
||
| 8 | /** |
||
| 9 | * @var Pagination |
||
| 10 | */ |
||
| 11 | protected $pagination; |
||
| 12 | |||
| 13 | protected function setPagination(Pagination $pagination) |
||
| 14 | { |
||
| 15 | $this->pagination = $pagination; |
||
| 16 | } |
||
| 17 | |||
| 18 | public function pagination(): ?Pagination |
||
| 21 | } |
||
| 22 | |||
| 23 | public function hasPagination(): bool |
||
| 26 | } |
||
| 27 | } |
||
| 28 |