Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
54 | 2 | public function execute(string $command) : array |
|
55 | { |
||
56 | 2 | $this->result = []; |
|
57 | 2 | $process = new Process( |
|
58 | 2 | $this->propelCommand . ' ' . $command . ' --config-dir=' . $this->configDir, |
|
|
|||
59 | 2 | $this->rootDirectory |
|
60 | ); |
||
61 | |||
62 | 2 | $process->run([$this, 'handle']); |
|
63 | |||
64 | 2 | return $this->result; |
|
65 | } |
||
79 |