1 | <?php |
||
18 | abstract class AbstractCommand extends Command implements ContainerAwareInterface |
||
19 | { |
||
20 | use ContainerAwareTrait; |
||
21 | |||
22 | /** |
||
23 | * @var SymfonyStyle |
||
24 | */ |
||
25 | protected $io; |
||
26 | |||
27 | /** |
||
28 | * {@inheritdoc} |
||
29 | */ |
||
30 | 9 | protected function initialize(InputInterface $input, OutputInterface $output) |
|
34 | |||
35 | /** |
||
36 | * @return ContainerInterface |
||
37 | */ |
||
38 | 9 | public function getContainer(): ContainerInterface |
|
42 | } |
||
43 |