| Conditions | 1 |
| Paths | 1 |
| Total Lines | 9 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 5 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 18 | 24 | public function boot() |
|
| 19 | { |
||
| 20 | // publish the configuration, if requested |
||
| 21 | 24 | $this->publishes([ |
|
| 22 | 24 | __DIR__ . '/../../config/notifiable_exception.php' => config_path('notifiable_exception.php'), |
|
| 23 | 24 | ], 'notifiable_exception_config'); |
|
| 24 | |||
| 25 | // merge the published configuration with the package default one |
||
| 26 | 24 | $this->mergeConfigFrom(__DIR__ . '/../../config/notifiable_exception.php', 'notifiable_exception'); |
|
| 27 | 24 | } |
|
| 29 |