| Total Complexity | 1 |
| Total Lines | 23 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 7 | trait PerPageHandlerTrait |
||
| 8 | { |
||
| 9 | /** |
||
| 10 | * Handle setting per page param. |
||
| 11 | * |
||
| 12 | * @param $perPage |
||
| 13 | * @return \Illuminate\Http\RedirectResponse|\Illuminate\Routing\Redirector |
||
| 14 | */ |
||
| 15 | 1 | public function perPage($perPage) |
|
| 24 | } |
||
| 25 | |||
| 26 | abstract protected function beforeInit(); |
||
| 27 | abstract protected function init(); |
||
| 28 | abstract protected function bound(); |
||
| 29 | abstract protected function crud(): CRUD; |
||
| 30 | } |
||
| 31 |