1 | <?php |
||
15 | class AbstractConnectionCommand extends AbstractCommand |
||
16 | { |
||
17 | /** |
||
18 | * @var Connection |
||
19 | */ |
||
20 | protected $connection; |
||
21 | |||
22 | /** |
||
23 | * {@inheritdoc} |
||
24 | */ |
||
25 | protected function configure() |
||
32 | |||
33 | /** |
||
34 | * {@inheritdoc} |
||
35 | */ |
||
36 | protected function initialize(InputInterface $input, OutputInterface $output) |
||
44 | } |
||
45 |