Total Complexity | 2 |
Total Lines | 33 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
19 | class MinuboConsole extends Console |
||
20 | { |
||
21 | /** |
||
22 | * @var string |
||
23 | */ |
||
24 | public const COMMAND_NAME = 'minubo:export:data'; |
||
25 | |||
26 | /** |
||
27 | * @var string |
||
28 | */ |
||
29 | public const DESCRIPTION = 'Run export of data to Minubo'; |
||
30 | |||
31 | /** |
||
32 | * @return void |
||
33 | */ |
||
34 | protected function configure(): void |
||
38 | } |
||
39 | |||
40 | /** |
||
41 | * @param \Symfony\Component\Console\Input\InputInterface $input |
||
42 | * @param \Symfony\Component\Console\Output\OutputInterface $output |
||
43 | * |
||
44 | * @return int|null |
||
45 | */ |
||
46 | protected function execute(InputInterface $input, OutputInterface $output): ?int |
||
54 |