Conditions | 2 |
Paths | 2 |
Total Lines | 12 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 2 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
51 | 3 | public function execute() |
|
52 | { |
||
53 | 3 | $options = $this->getOptions(); |
|
54 | |||
55 | 3 | if (!$options['cmd']) { |
|
56 | 1 | throw new ErrorException('Parameter "cmd" is not defined'); |
|
57 | } |
||
58 | |||
59 | /** @var Process $process */ |
||
60 | 2 | $process = $this->runtime->runCommand($options['cmd'], $options['timeout']); |
|
61 | 2 | return $process->isSuccessful(); |
|
62 | } |
||
63 | |||
77 |