| Total Complexity | 2 |
| Total Lines | 32 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 13 | class GarbageManServiceProvider extends ServiceProvider |
||
| 14 | { |
||
| 15 | /** |
||
| 16 | * Perform post-registration booting of services. |
||
| 17 | * |
||
| 18 | * @return void |
||
| 19 | */ |
||
| 20 | 1 | public function boot() |
|
| 21 | { |
||
| 22 | 1 | $this->publishes( |
|
| 23 | [ |
||
| 24 | 1 | realpath(__DIR__ . '/config/garbageman.php') => config_path('garbageman.php'), |
|
| 25 | ], |
||
| 26 | 1 | 'config' |
|
| 27 | ); |
||
| 28 | 1 | } |
|
| 29 | |||
| 30 | /** |
||
| 31 | * Register the service provider. |
||
| 32 | * |
||
| 33 | * @return void |
||
| 34 | */ |
||
| 35 | 1 | public function register() |
|
| 45 | 1 | } |
|
| 46 | } |
||
| 47 |