Total Complexity | 4 |
Total Lines | 39 |
Duplicated Lines | 0 % |
Changes | 3 | ||
Bugs | 0 | Features | 2 |
1 | <?php |
||
8 | final class AuthServiceProvider extends ServiceProvider |
||
9 | { |
||
10 | /** |
||
11 | * The policy mappings for the application. |
||
12 | * |
||
13 | * @var array |
||
14 | */ |
||
15 | protected $policies = []; |
||
16 | |||
17 | /** |
||
18 | * Register services. |
||
19 | * |
||
20 | * @return void |
||
21 | */ |
||
22 | public function register() |
||
23 | { |
||
24 | // |
||
25 | } |
||
26 | |||
27 | /** |
||
28 | * Bootstrap services. |
||
29 | * |
||
30 | * @return void |
||
31 | */ |
||
32 | public function boot() |
||
47 | }); |
||
48 | } |
||
51 |
This check looks for parameters that have been defined for a function or method, but which are not used in the method body.