Total Complexity | 2 |
Total Lines | 26 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
7 | class ClientServiceProvider extends ServiceProvider |
||
8 | { |
||
9 | /** |
||
10 | * Bootstrap any application services. |
||
11 | * |
||
12 | * @return void |
||
13 | */ |
||
14 | public function boot(): void |
||
15 | { |
||
16 | $this->publishes([ |
||
17 | __DIR__ . '/../../configs/resova-api.php' => config_path('resova-api.php'), |
||
18 | ]); |
||
19 | } |
||
20 | |||
21 | /** |
||
22 | * Register any application services. |
||
23 | * |
||
24 | * @return void |
||
25 | */ |
||
26 | public function register(): void |
||
33 | } |
||
34 | } |