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