| Total Complexity | 2 |
| Total Lines | 18 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 21 | class PeriodicalActivityDataImportConsoleCommandPlugin extends AbstractCommandPlugin |
||
| 22 | { |
||
| 23 | public const COMMAND_NAME = 'forecast:import:periodical:activity'; |
||
| 24 | public const DESCRIPTION = 'This command will import your forecast.it activity, based on activated plugins.'; |
||
| 25 | |||
| 26 | protected function configure(): void |
||
| 27 | { |
||
| 28 | $this->setName(self::COMMAND_NAME); |
||
| 29 | $this->setDescription(self::DESCRIPTION); |
||
| 30 | |||
| 31 | parent::configure(); |
||
| 32 | } |
||
| 33 | |||
| 34 | protected function execute(InputInterface $input, OutputInterface $output): int |
||
| 39 | } |
||
| 40 | } |
||
| 41 |