Total Complexity | 3 |
Total Lines | 35 |
Duplicated Lines | 0 % |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
21 | class ElasticSearchServiceProvider extends ServiceProvider |
||
22 | { |
||
23 | /** |
||
24 | * Register services. |
||
25 | * |
||
26 | * @return void |
||
27 | */ |
||
28 | public function register() |
||
29 | { |
||
30 | $this->mergeConfigFrom( |
||
31 | __DIR__ . '/config/elasticsearch.php', 'elasticsearch' |
||
32 | ); |
||
33 | } |
||
34 | |||
35 | /** |
||
36 | * Bootstrap services. |
||
37 | * |
||
38 | * @return void |
||
39 | */ |
||
40 | public function boot() |
||
56 | ]); |
||
57 | } |
||
60 |