Total Complexity | 9 |
Total Lines | 48 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
10 | class RoleRepository implements RoleRepositoryInterface |
||
11 | { |
||
12 | // Role Index |
||
13 | public function indexRole() |
||
22 | } |
||
23 | |||
24 | // Role Create |
||
25 | public function createRole() |
||
26 | { |
||
27 | // |
||
28 | } |
||
29 | |||
30 | // Role Store |
||
31 | public function storeRole(RoleRequest $request) |
||
34 | } |
||
35 | |||
36 | // Role Show |
||
37 | public function showRole(Role $role) |
||
38 | { |
||
39 | return compact('role'); |
||
40 | } |
||
41 | |||
42 | // Role Edit |
||
43 | public function editRole(Role $role) |
||
44 | { |
||
45 | return compact('role'); |
||
46 | } |
||
47 | |||
48 | // Role Update |
||
49 | public function updateRole(RoleRequest $request, Role $role) |
||
52 | } |
||
53 | |||
54 | // Role Destroy |
||
55 | public function destroyRole(Role $role) |
||
60 |