1 | <?php |
||
13 | class DefaultCommand extends ContainerAwareCommand |
||
14 | { |
||
15 | /** |
||
16 | * @var \Symfony\Component\Console\Style\SymfonyStyle |
||
17 | */ |
||
18 | protected $style; |
||
19 | |||
20 | /** |
||
21 | * {@inheritdoc} |
||
22 | * |
||
23 | * @see \Symfony\Component\Console\Command\Command::configure() |
||
24 | */ |
||
25 | protected function configure() |
||
37 | |||
38 | /** |
||
39 | * {@inheritdoc} |
||
40 | * |
||
41 | * @see \Symfony\Component\Console\Command\Command::initialize() |
||
42 | */ |
||
43 | protected function initialize(InputInterface $input, OutputInterface $output) |
||
48 | |||
49 | /** |
||
50 | * {@inheritdoc} |
||
51 | * |
||
52 | * @see \Symfony\Component\Console\Command\Command::execute() |
||
53 | */ |
||
54 | protected function execute(InputInterface $input, OutputInterface $output) |
||
61 | } |
||
62 |