1 | <?php |
||
15 | class AbstractClientCommand extends AbstractCommand |
||
16 | { |
||
17 | /** |
||
18 | * @var Client |
||
19 | */ |
||
20 | protected $client; |
||
21 | /** |
||
22 | * {@inheritdoc} |
||
23 | */ |
||
24 | protected function configure() |
||
31 | /** |
||
32 | * {@inheritdoc} |
||
33 | */ |
||
34 | protected function initialize(InputInterface $input, OutputInterface $output) |
||
42 | } |
||
43 |