Conditions | 4 |
Paths | 8 |
Total Lines | 16 |
Code Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 20 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
29 | public function handle() |
||
30 | { |
||
31 | if (! $this->option('alone')) { |
||
32 | $this->call('clear-compiled'); |
||
33 | } |
||
34 | |||
35 | if ($this->laravel->bound('command.ide-helper.generate')) { |
||
36 | $this->call('ide-helper:generate'); |
||
37 | $this->call('ide-helper:meta'); |
||
38 | $this->call('ide-helper:models', ['-R' => true, '-N' => true]); |
||
39 | } |
||
40 | |||
41 | if (! $this->option('alone')) { |
||
42 | $this->call('optimize'); |
||
43 | } |
||
44 | } |
||
45 | } |
||
46 |