1 | <?php |
||
11 | class SocialCommand extends BaseCommand |
||
12 | { |
||
13 | /** |
||
14 | * Initialize command. |
||
15 | * |
||
16 | * @param InputInterface $input |
||
17 | * @param OutputInterface $output |
||
18 | */ |
||
19 | protected function initialize(InputInterface $input, OutputInterface $output) |
||
27 | |||
28 | /** |
||
29 | * Configure the command options. |
||
30 | */ |
||
31 | protected function configure() |
||
38 | |||
39 | /** |
||
40 | * Execute the command. |
||
41 | * |
||
42 | * @param InputInterface $input |
||
43 | * @param OutputInterface $output |
||
44 | * |
||
45 | * @return void |
||
46 | */ |
||
47 | protected function execute(InputInterface $input, OutputInterface $output) |
||
54 | |||
55 | /** |
||
56 | * Get llum package name. |
||
57 | */ |
||
58 | protected function getPackageName() |
||
62 | } |
||
63 |