Total Complexity | 4 |
Total Lines | 28 |
Duplicated Lines | 0 % |
Coverage | 55.56% |
Changes | 0 |
1 | <?php |
||
7 | class AppServiceProvider extends ServiceProvider |
||
8 | { |
||
9 | /** |
||
10 | * Bootstrap any application services. |
||
11 | * |
||
12 | * @return void |
||
13 | */ |
||
14 | 41 | public function boot() |
|
16 | // |
||
17 | 41 | } |
|
18 | |||
19 | /** |
||
20 | * Register any application services. |
||
21 | * |
||
22 | * @return void |
||
23 | */ |
||
24 | 41 | public function register() |
|
25 | { |
||
26 | 41 | if (env('APP_ENV') === 'local') { |
|
27 | $this->registerLocalPackages(); |
||
28 | } |
||
29 | 41 | } |
|
30 | |||
31 | private function registerLocalPackages() |
||
35 | } |
||
36 | |||
38 |