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