Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Tests | 8 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
9 | 1 | public function runCommands() |
|
10 | { |
||
11 | 1 | $commands = implode('; ', $this->getCommands()); |
|
12 | |||
13 | 1 | $process = new Process($commands, $this->getPath()); |
|
14 | 1 | $process->setTimeout(600); |
|
15 | 1 | $process->setIdleTimeout(null); |
|
16 | |||
17 | 1 | $this->logger->info('Running "'.$process->getCommandLine().'"'); |
|
18 | 1 | $process->mustRun(); |
|
19 | 1 | } |
|
20 | } |
||
21 |