| Total Complexity | 3 |
| Total Lines | 20 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 11 | class AddEventCommand extends EventCommand |
||
| 12 | { |
||
| 13 | protected function configure() |
||
| 14 | { |
||
| 15 | $this->setName(EventEnum::ADD); |
||
| 16 | } |
||
| 17 | |||
| 18 | /** |
||
| 19 | * @param InputInterface $input |
||
| 20 | * @param OutputInterface $output |
||
| 21 | * @return int |
||
| 22 | */ |
||
| 23 | protected function execute(InputInterface $input, OutputInterface $output): int |
||
| 31 | } |
||
| 32 | } |
||
| 33 |