Conditions | 1 |
Paths | 1 |
Total Lines | 14 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
28 | public function handle() |
||
29 | { |
||
30 | $this->callSilent('vendor:publish', [ |
||
31 | '--tag' => 'canvas-config', |
||
32 | '--force' => $this->option('force'), |
||
33 | ]); |
||
34 | |||
35 | $this->callSilent('vendor:publish', [ |
||
36 | '--tag' => 'canvas-assets', |
||
37 | '--force' => true, |
||
38 | ]); |
||
39 | |||
40 | $this->info('Publishing complete.'); |
||
41 | } |
||
42 | } |
||
43 |