| Conditions | 2 |
| Paths | 2 |
| Total Lines | 8 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php declare(strict_types = 1); |
||
| 17 | public function reconfigureIndexes(array $indexes): void |
||
| 18 | { |
||
| 19 | $factory = new IndexCreatorFactory(); |
||
| 20 | $indexCreator = $factory->getIndexCreator(); |
||
| 21 | |||
| 22 | /** @var \Suilven\FreeTextSearch\Index $indexObj */ |
||
| 23 | foreach ($indexes as $indexObj) { |
||
| 24 | $indexCreator->createIndex($indexObj->getName()); |
||
| 25 | |||
| 32 |