Total Complexity | 3 |
Total Lines | 30 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
22 | class InstallCommand extends Command |
||
23 | { |
||
24 | /** |
||
25 | * @var Installer |
||
26 | */ |
||
27 | private $installer; |
||
28 | |||
29 | /** |
||
30 | * InstallCommand constructor. |
||
31 | * |
||
32 | * @param null|string $name |
||
33 | * @param Installer $installer |
||
34 | */ |
||
35 | public function __construct(?string $name = null, Installer $installer) |
||
36 | { |
||
37 | parent::__construct($name); |
||
38 | $this->installer = $installer; |
||
39 | } |
||
40 | |||
41 | protected function configure(): void |
||
46 | ; |
||
47 | } |
||
48 | |||
49 | protected function execute(InputInterface $input, OutputInterface $output): void |
||
54 |