Total Complexity | 5 |
Total Lines | 34 |
Duplicated Lines | 0 % |
Coverage | 38.46% |
Changes | 0 |
1 | <?php |
||
8 | class AppServiceProvider extends ServiceProvider |
||
9 | { |
||
10 | /** |
||
11 | * Bootstrap any application services. |
||
12 | * |
||
13 | * @return void |
||
14 | */ |
||
15 | 90 | public function boot() |
|
16 | { |
||
17 | // |
||
18 | 90 | } |
|
19 | |||
20 | /** |
||
21 | * Register any application services. |
||
22 | * |
||
23 | * @return void |
||
24 | */ |
||
25 | 90 | public function register() |
|
26 | { |
||
27 | 90 | if (env('APP_ENV') === 'local') { |
|
28 | $this->registerLocalPackages(); |
||
29 | $this->registerGeneratorServiceProvider(); |
||
30 | } |
||
31 | 90 | } |
|
32 | |||
33 | private function registerLocalPackages() |
||
37 | } |
||
38 | |||
39 | private function registerGeneratorServiceProvider() |
||
42 | } |
||
43 | } |
||
44 |