Conditions | 3 |
Paths | 4 |
Total Lines | 15 |
Code Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
15 | public function handle() |
||
16 | { |
||
17 | if ($this->option('config')) { |
||
18 | $this->call('vendor:publish', [ |
||
19 | '--provider' => Service::class, |
||
20 | '--tag' => ['config'], |
||
21 | '--force' => true, |
||
22 | ]); |
||
23 | } |
||
24 | |||
25 | if ($this->option('views')) { |
||
26 | $this->call('vendor:publish', [ |
||
27 | '--provider' => Service::class, |
||
28 | '--tag' => ['views'], |
||
29 | '--force' => true, |
||
30 | ]); |
||
34 |