Conditions | 2 |
Paths | 2 |
Total Lines | 12 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
31 | 108 | public function run(): bool |
|
32 | { |
||
33 | 108 | $artisanCommand = $this->getArtisanCommnad(); |
|
34 | |||
35 | 108 | if ($artisanCommand->getOutput()->isVerbose()) { |
|
36 | 12 | $artisanCommand->getOutput()->newLine(); |
|
37 | |||
38 | 12 | return ! $artisanCommand->call($this->command, $this->arguments); |
|
39 | } |
||
40 | |||
41 | 96 | return ! $artisanCommand->callSilent($this->command, $this->arguments); |
|
42 | } |
||
43 | } |
||
44 |