| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 1 | Features | 0 |
| 1 | <?php |
||
| 37 | protected function execute(InputInterface $input, OutputInterface $output) { |
||
| 38 | $output->writeln( |
||
| 39 | "\nMigrating data, this could take a while...\n" |
||
| 40 | ); |
||
| 41 | $progressbar = function ($steps) use ($output) { |
||
| 42 | return new ProgressBar($output, $steps); |
||
| 43 | }; |
||
| 44 | $this->service->generateSearchIndices($progressbar); |
||
| 45 | $output->writeln("\n"); |
||
| 46 | } |
||
| 47 | |||
| 49 |