Conditions | 1 |
Paths | 1 |
Total Lines | 15 |
Code Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
28 | public function handle() |
||
29 | { |
||
30 | $this->call('vendor:publish', [ |
||
31 | '--tag' => 'menu-config', |
||
32 | '--force' => $this->option('force'), |
||
33 | ]); |
||
34 | |||
35 | $this->call('vendor:publish', [ |
||
36 | '--tag' => 'menu-assets', |
||
37 | '--force' => true, |
||
38 | ]); |
||
39 | |||
40 | $this->call('vendor:publish', [ |
||
41 | '--tag' => 'menu-views', |
||
42 | '--force' => true, |
||
43 | ]); |
||
46 |