| Total Complexity | 2 |
| Total Lines | 27 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 0 | ||
| 1 | <?php |
||
| 8 | class HandlersServiceProvider extends ServiceProvider |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * Bootstrap any application services. |
||
| 12 | * |
||
| 13 | * @return void |
||
| 14 | */ |
||
| 15 | 22 | public function boot() |
|
| 16 | { |
||
| 17 | 22 | $this->publishes([ |
|
| 18 | 22 | __DIR__.'/../../config/handlers.php' => config_path('handlers.php'), |
|
| 19 | 22 | ], 'config'); |
|
| 20 | 22 | } |
|
| 21 | |||
| 22 | /** |
||
| 23 | * Register any application services. |
||
| 24 | * |
||
| 25 | * @return void |
||
| 26 | */ |
||
| 27 | 22 | public function register() |
|
| 35 | ]); |
||
| 36 | 22 | } |
|
| 38 |