Conditions | 1 |
Paths | 1 |
Total Lines | 23 |
Code Lines | 13 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 2 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
28 | public function handle() |
||
29 | { |
||
30 | $this->call('vendor:publish', [ |
||
31 | '--tag' => 'tinre-config', |
||
32 | '--force' => $this->option('force'), |
||
33 | ]); |
||
34 | |||
35 | $this->call('vendor:publish', [ |
||
36 | '--tag' => 'tinre-assets', |
||
37 | '--force' => true, |
||
38 | ]); |
||
39 | |||
40 | $this->call('vendor:publish', [ |
||
41 | '--tag' => 'tinre-lang', |
||
42 | '--force' => $this->option('force'), |
||
43 | ]); |
||
44 | |||
45 | $this->call('vendor:publish', [ |
||
46 | '--tag' => 'tinre-views', |
||
47 | '--force' => $this->option('force'), |
||
48 | ]); |
||
49 | |||
50 | $this->call('view:clear'); |
||
51 | } |
||
53 |