1 | <?php |
||
16 | class BaseCommand extends Command |
||
17 | { |
||
18 | /** |
||
19 | * @var string |
||
20 | */ |
||
21 | private $diConsoleCommandClass; |
||
22 | |||
23 | /** |
||
24 | * @param string $command |
||
25 | */ |
||
26 | 3 | public function __construct($diConsoleCommandClass) |
|
32 | |||
33 | /* (non-PHPdoc) |
||
34 | * @see \Symfony\Component\Console\Command\Command::configure() |
||
35 | */ |
||
36 | 3 | protected function configure() |
|
45 | |||
46 | /* (non-PHPdoc) |
||
47 | * @see \Symfony\Component\Console\Command\Command::execute() |
||
48 | */ |
||
49 | 3 | public function execute(InputInterface $input, OutputInterface $output) |
|
55 | } |
||
56 |