Conditions | 2 |
Paths | 2 |
Total Lines | 19 |
Code Lines | 13 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
28 | public function handle() |
||
29 | { |
||
30 | $this->comment('Publishing Uccello Assets...'); |
||
31 | $this->call('vendor:publish', [ |
||
32 | '--tag' => 'uccello-assets', |
||
33 | '--force' => true, |
||
34 | ]); |
||
35 | |||
36 | $this->comment('Publishing Uccello Configuration...'); |
||
37 | $this->call('vendor:publish', [ |
||
38 | '--tag' => 'uccello-config', |
||
39 | '--force' => $this->option('force'), |
||
40 | ]); |
||
41 | |||
42 | if ($this->option('views') === true) { |
||
|
|||
43 | $this->comment('Publishing Uccello Views...'); |
||
44 | $this->call('vendor:publish', [ |
||
45 | '--tag' => 'uccello-views', |
||
46 | '--force' => $this->option('force'), |
||
47 | ]); |
||
50 | } |