1 | <?php |
||
14 | class SampleCommand extends Command |
||
15 | { |
||
16 | /** |
||
17 | * Configuration of command |
||
18 | */ |
||
19 | protected function configure() |
||
26 | |||
27 | /** |
||
28 | * Execute method of command |
||
29 | * |
||
30 | * @param InputInterface $input |
||
31 | * @param OutputInterface $output |
||
32 | * |
||
33 | * @return int|null|void |
||
34 | */ |
||
35 | protected function execute(InputInterface $input, OutputInterface $output) |
||
39 | } |
||
40 |