Total Complexity | 2 |
Total Lines | 29 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
10 | trait ToolbarHandlerTrait |
||
11 | { |
||
12 | /** |
||
13 | * Handle toolbar's tool request. |
||
14 | * |
||
15 | * @param Request $request |
||
16 | * @param $identifier |
||
17 | * @return mixed |
||
18 | * @throws PermissionDenied |
||
19 | */ |
||
20 | public function toolbar(Request $request, $identifier) |
||
33 | } |
||
34 | |||
35 | abstract protected function beforeInit(); |
||
36 | abstract protected function init(); |
||
37 | abstract protected function bound(); |
||
38 | abstract protected function crud(): CRUD; |
||
39 | } |
||
40 |