Total Complexity | 5 |
Total Lines | 43 |
Duplicated Lines | 0 % |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
16 | class DruidServiceProvider extends ServiceProvider |
||
17 | { |
||
18 | /** |
||
19 | * Register the application services. |
||
20 | */ |
||
21 | public function register(): void |
||
22 | { |
||
23 | $this->registerDruidClient(); |
||
24 | } |
||
25 | |||
26 | /** |
||
27 | * Publish and merge the config |
||
28 | */ |
||
29 | protected function setupConfig(): void |
||
40 | } |
||
41 | |||
42 | /** |
||
43 | * Register the application bindings. |
||
44 | * |
||
45 | * @return void |
||
46 | */ |
||
47 | protected function registerDruidClient(): void |
||
59 | } |
||
60 | } |