Total Complexity | 4 |
Total Lines | 55 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
14 | class ServiceProvider extends LaravelServiceProvider |
||
15 | { |
||
16 | /** |
||
17 | * Indicates if loading of the provider is deferred. |
||
18 | * |
||
19 | * @var bool |
||
20 | */ |
||
21 | protected $defer = true; |
||
22 | |||
23 | /** |
||
24 | * Bootstrap the application services. |
||
25 | * |
||
26 | * @return void |
||
27 | */ |
||
28 | public function boot() |
||
29 | { |
||
30 | // |
||
31 | } |
||
32 | |||
33 | /** |
||
34 | * Register the application services. |
||
35 | * |
||
36 | * @return void |
||
37 | */ |
||
38 | public function register() |
||
43 | } |
||
44 | |||
45 | /** |
||
46 | * Register the NcentralClient object |
||
47 | * |
||
48 | * A NcentralClient needs to have some properties set, so in Laravel, we are going to pull them from the configs. |
||
49 | */ |
||
50 | protected function registerNcentralClient() |
||
56 | } |
||
57 | ); |
||
58 | } |
||
59 | |||
60 | /** |
||
61 | * Get the services provided by the provider. |
||
62 | * |
||
63 | * @return array |
||
64 | */ |
||
65 | public function provides() |
||
72 |
This check looks for parameters that have been defined for a function or method, but which are not used in the method body.