1 | <?php |
||
10 | class InstallCommand extends Command |
||
11 | { |
||
12 | /** |
||
13 | * @var DockerInstaller |
||
14 | */ |
||
15 | private $dockerInstaller; |
||
16 | |||
17 | /** |
||
18 | * @param DockerInstaller $dockerInstaller |
||
19 | */ |
||
20 | public function __construct(DockerInstaller $dockerInstaller) |
||
26 | |||
27 | /** |
||
28 | * {@inheritdoc} |
||
29 | */ |
||
30 | protected function configure() |
||
37 | |||
38 | /** |
||
39 | * {@inheritdoc} |
||
40 | */ |
||
41 | protected function execute(InputInterface $input, OutputInterface $output) |
||
52 | } |
||
53 |