| Conditions | 2 |
| Paths | 2 |
| Total Lines | 10 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 6 |
| Changes | 0 | ||
| 1 | <?php |
||
| 31 | protected function execute(InputInterface $input, OutputInterface $output) |
||
| 32 | { |
||
| 33 | $files = $input->getArgument('files'); |
||
| 34 | $fileSuffix = ' -f ' . implode(' -f ', $files); |
||
| 35 | |||
| 36 | $command = sprintf('%s stop -d', $fileSuffix); |
||
| 37 | $response = $this->getFacade()->runDockerCompose($command); |
||
| 38 | |||
| 39 | if ($output->isVerbose()) { |
||
| 40 | $output->writeln($response); |
||
| 41 | } |
||
| 45 | } |