| Conditions | 2 |
| Paths | 2 |
| Total Lines | 11 |
| 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 | $command = sprintf( |
||
| 34 | 'restart %s', |
||
| 35 | $input->getArgument('container') |
||
| 36 | ); |
||
| 37 | |||
| 38 | $response = $this->getFacade()->runDocker($command); |
||
| 39 | |||
| 40 | if ($output->isVerbose()) { |
||
| 41 | $output->writeln($response); |
||
| 42 | } |
||
| 46 | } |