1 | <?php |
||
12 | class BaseCommand extends Command |
||
13 | { |
||
14 | /** |
||
15 | * @var \PHPSemVerChecker\Configuration\Configuration |
||
16 | */ |
||
17 | protected $config; |
||
18 | |||
19 | /** |
||
20 | * @param \Symfony\Component\Console\Input\InputInterface $input |
||
21 | * @param \Symfony\Component\Console\Output\OutputInterface $output |
||
22 | */ |
||
23 | protected function initialize(InputInterface $input, OutputInterface $output) |
||
34 | } |
||
35 |