| Total Complexity | 2 |
| Total Lines | 12 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 7 | class SettingsServiceProvider extends ServiceProvider |
||
| 8 | { |
||
| 9 | 48 | public function boot() |
|
| 10 | { |
||
| 11 | 48 | $this->publishes([ |
|
| 12 | 48 | __DIR__ . '/../database/migrations/' => base_path('/database/migrations'), |
|
| 13 | 48 | __DIR__.'/../config/settings.php' => config_path('settings.php'), |
|
| 14 | ]); |
||
| 15 | 48 | } |
|
| 16 | |||
| 17 | 48 | public function register() |
|
| 19 | |||
| 20 | 48 | } |
|
| 22 |