| Total Complexity | 3 |
| Total Lines | 27 |
| Duplicated Lines | 0 % |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 17 | class FactFinderNgImportSearchConsole extends Console |
||
| 18 | { |
||
| 19 | public const COMMAND_NAME = 'fact-finder-ng:import:search'; |
||
| 20 | public const DESCRIPTION = 'Trigger importing of search data. Url for file is defined on FF side.'; |
||
| 21 | |||
| 22 | /** |
||
| 23 | * @return void |
||
| 24 | */ |
||
| 25 | protected function configure() |
||
| 26 | { |
||
| 27 | $this->setName(static::COMMAND_NAME); |
||
| 28 | $this->setDescription(static::DESCRIPTION); |
||
| 29 | |||
| 30 | parent::configure(); |
||
| 31 | } |
||
| 32 | |||
| 33 | /** |
||
| 34 | * @param \Symfony\Component\Console\Input\InputInterface $input |
||
| 35 | * @param \Symfony\Component\Console\Output\OutputInterface $output |
||
| 36 | * |
||
| 37 | * @return int |
||
| 38 | */ |
||
| 39 | protected function execute(InputInterface $input, OutputInterface $output) |
||
| 44 | } |
||
| 45 | } |
||
| 46 |