Total Complexity | 2 |
Total Lines | 30 |
Duplicated Lines | 0 % |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
7 | class GenderizeServiceProvider extends ServiceProvider |
||
8 | { |
||
9 | /** |
||
10 | * Bootstrap the application services. |
||
11 | * |
||
12 | * @return void |
||
13 | */ |
||
14 | public function boot() |
||
15 | { |
||
16 | $this->mergeConfigFrom(__DIR__.'/../config/genderize.php', 'genderize'); |
||
17 | |||
18 | $this->publishes([ |
||
19 | __DIR__.'/../config/genderize.php' => config_path('genderize.php'), |
||
20 | ]); |
||
21 | } |
||
22 | |||
23 | /** |
||
24 | * Register the application services. |
||
25 | * |
||
26 | * @return void |
||
27 | */ |
||
28 | public function register() |
||
37 | } |
||
38 | } |
||
39 |