Conditions | 2 |
Paths | 2 |
Total Lines | 11 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
32 | protected function execute(InputInterface $input, OutputInterface $output) |
||
33 | { |
||
34 | $command = sprintf( |
||
35 | 'restart %s', |
||
36 | $input->getArgument('container') |
||
37 | ); |
||
38 | |||
39 | $response = $this->getFacade()->runDocker($command); |
||
40 | |||
41 | if ($output->isVerbose()) { |
||
42 | $output->writeln($response); |
||
43 | } |
||
47 | } |