Conditions | 2 |
Paths | 2 |
Total Lines | 9 |
Lines | 9 |
Ratio | 100 % |
Tests | 5 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
32 | 2 | View Code Duplication | public function run() |
33 | { |
||
34 | 2 | $this->process->run(); |
|
35 | 2 | if (!$this->process->isSuccessful()) { |
|
36 | 1 | throw new \RuntimeException($this->process->getErrorOutput()); |
|
37 | } |
||
38 | |||
39 | 1 | return $this->process->getOutput(); |
|
40 | } |
||
41 | |||
73 |