Conditions | 2 |
Paths | 2 |
Total Lines | 12 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
13 | public function boot() |
||
14 | { |
||
15 | if ($this->app->runningInConsole()) { |
||
16 | $this->publishes([ |
||
17 | __DIR__.'/../config/sovren.php' => config_path('laravel-sovren.php'), |
||
18 | ], 'config'); |
||
19 | } |
||
20 | |||
21 | $this->publishes([ |
||
22 | __DIR__.'/../config/sovren.php' => config_path('sovren.php'), |
||
23 | ], 'config'); |
||
24 | } |
||
25 | |||
50 |