Total Complexity | 14 |
Total Lines | 71 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
10 | class RolesSectionModelPolicy |
||
11 | { |
||
12 | use HandlesAuthorization; |
||
13 | |||
14 | /** |
||
15 | * @param User $user |
||
16 | * @param string $ability |
||
17 | * @param Roles $section |
||
18 | * @param Role $item |
||
19 | * |
||
20 | * @return bool |
||
21 | */ |
||
22 | public function before(User $user, $ability, Section $section, Model $item = null) |
||
23 | { |
||
24 | if ($user->isAdmin()) { |
||
25 | return true; |
||
26 | } |
||
27 | } |
||
28 | |||
29 | public function display(User $user, Section $section, Model $item) |
||
30 | { |
||
31 | if ($user->isAdmin()) { |
||
32 | return true; |
||
33 | } |
||
34 | |||
35 | return false; |
||
36 | } |
||
37 | |||
38 | public function create(User $user, Section $section, Model $item) |
||
39 | { |
||
40 | if ($user->isAdmin()) { |
||
41 | return true; |
||
42 | } |
||
43 | |||
44 | return false; |
||
45 | } |
||
46 | |||
47 | public function edit(User $user, Section $section, Model $item) |
||
54 | } |
||
55 | |||
56 | public function delete(User $user, Section $section, Model $item) |
||
57 | { |
||
58 | if ($user->isAdmin()) { |
||
59 | return true; |
||
60 | } |
||
61 | |||
62 | return false; |
||
63 | } |
||
64 | |||
65 | public function restore(User $user, Section $section, Model $item) |
||
72 | } |
||
73 | |||
74 | public function destroy(User $user, Section $section, Model $item) |
||
81 | } |
||
82 | } |
||
83 |
This check looks for parameters that have been defined for a function or method, but which are not used in the method body.