| Conditions | 3 |
| Paths | 2 |
| Total Lines | 10 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 9 | public function boot() |
||
| 10 | { |
||
| 11 | if ($this->app->runningInConsole() && function_exists('config_path')) { |
||
| 12 | $this->publishes([ |
||
| 13 | __DIR__.'/../config/query-builder.php' => config_path('query-builder.php'), |
||
| 14 | ], 'config'); |
||
| 15 | } |
||
| 16 | |||
| 17 | $this->mergeConfigFrom(__DIR__.'/../config/query-builder.php', 'query-builder'); |
||
| 18 | } |
||
| 19 | |||
| 36 |