| Total Complexity | 3 |
| Total Lines | 25 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 9 | class ServerPolicy |
||
| 10 | { |
||
| 11 | use HandlesAuthorization; |
||
| 12 | |||
| 13 | public function before(?User $user, $ability) |
||
|
|
|||
| 14 | { |
||
| 15 | if ($user->can('admin roles & permissions')) { |
||
| 16 | return true; |
||
| 17 | } |
||
| 18 | } |
||
| 19 | |||
| 20 | /** |
||
| 21 | * Determine whether the user can view the server. |
||
| 22 | * |
||
| 23 | * @param \Gameap\Models\User $user |
||
| 24 | * @param \Gameap\Models\Server $server |
||
| 25 | * @return mixed |
||
| 26 | */ |
||
| 27 | public function control(?User $user, Server $server) |
||
| 34 | } |
||
| 35 | } |
||
| 36 |
This check looks for parameters that have been defined for a function or method, but which are not used in the method body.