Total Complexity | 2 |
Total Lines | 13 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
10 | class RemoveCommand extends Command |
||
11 | { |
||
12 | protected function configure() |
||
13 | { |
||
14 | $this |
||
15 | ->setName(Cst::REMOVE_EVENT) |
||
16 | ->setDescription("An event from aenthill") |
||
17 | ->setHelp('TODO') |
||
18 | ->addArgument('payload', InputArgument::OPTIONAL, "The payload of the event"); |
||
19 | } |
||
20 | |||
21 | protected function execute(InputInterface $input, OutputInterface $output) |
||
23 | // TODO |
||
24 | } |
||
26 |