1 | <?php |
||
17 | abstract class AbstractCommand extends ContainerAwareCommand |
||
18 | { |
||
19 | /** @var SymfonyStyle */ |
||
20 | protected $io; |
||
21 | /** @var Connection */ |
||
22 | protected $connection; |
||
23 | |||
24 | /** |
||
25 | * {@inheritdoc} |
||
26 | */ |
||
27 | 2 | protected function configure() |
|
34 | /** |
||
35 | * {@inheritdoc} |
||
36 | */ |
||
37 | 2 | protected function initialize(InputInterface $input, OutputInterface $output) |
|
46 | } |
||
47 |