Conditions | 2 |
Paths | 2 |
Total Lines | 12 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
35 | 25 | public function execute(): bool |
|
36 | { |
||
37 | 25 | $options = $this->getOptions(); |
|
38 | 25 | if ($options['tag']) { |
|
39 | 1 | throw new SkipException(); |
|
40 | } |
||
41 | |||
42 | 24 | $command = $options['path'] . ' pull'; |
|
43 | |||
44 | 24 | $process = $this->runtime->runLocalCommand($command); |
|
45 | |||
46 | 24 | return $process->isSuccessful(); |
|
47 | } |
||
65 |