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