Conditions | 2 |
Paths | 2 |
Total Lines | 12 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
33 | protected function execute(InputInterface $input, OutputInterface $output) |
||
34 | { |
||
35 | $command = sprintf( |
||
36 | 'build %s -t %s', |
||
37 | $input->getArgument('directory'), |
||
38 | $input->getArgument('image') |
||
39 | ); |
||
40 | |||
41 | $response = $this->getFacade()->runDocker($command); |
||
42 | |||
43 | if ($output->isVerbose()) { |
||
44 | $output->writeln($response); |
||
45 | } |
||
49 | } |