| Total Complexity | 2 |
| Total Lines | 22 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 1 | Features | 0 |
| 1 | <?php |
||
| 7 | class QueryUpdaterServiceProvider extends ServiceProvider |
||
| 8 | { |
||
| 9 | /** |
||
| 10 | * Bootstrap services. |
||
| 11 | * |
||
| 12 | * @return void |
||
| 13 | */ |
||
| 14 | 4 | public function boot() |
|
| 15 | { |
||
| 16 | 4 | $this->publishes([ |
|
| 17 | 4 | __DIR__.'/../config/query-updater.php' => config_path('query-updater.php'), |
|
| 18 | 4 | ], 'query-updater'); |
|
| 19 | 4 | } |
|
| 20 | |||
| 21 | /** |
||
| 22 | * Register the service provider. |
||
| 23 | * |
||
| 24 | * @return void |
||
| 25 | */ |
||
| 26 | 4 | public function register() |
|
| 29 | 4 | } |
|
| 30 | } |
||
| 31 |