Total Complexity | 3 |
Total Lines | 30 |
Duplicated Lines | 0 % |
Changes | 2 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
7 | class AppServiceProvider extends ServiceProvider |
||
8 | { |
||
9 | /** |
||
10 | * Bootstrap any application services. |
||
11 | * |
||
12 | * @return void |
||
13 | */ |
||
14 | public function boot() |
||
16 | } |
||
17 | |||
18 | /** |
||
19 | * Register any application services. |
||
20 | * |
||
21 | * @return void |
||
22 | */ |
||
23 | public function register() |
||
24 | { |
||
25 | $this->mergeConfig(); |
||
26 | } |
||
27 | |||
28 | private function mergeConfig() |
||
37 | ); |
||
38 | } |
||
40 |