Total Complexity | 1 |
Total Lines | 17 |
Duplicated Lines | 0 % |
Changes | 3 | ||
Bugs | 0 | Features | 0 |
1 | <?php declare(strict_types = 1); |
||
14 | abstract class IndexCreator implements \Suilven\FreeTextSearch\Interfaces\IndexCreator |
||
15 | { |
||
16 | /** |
||
17 | * (Re)create an index of the given name, using the index configuration from YML |
||
18 | * |
||
19 | * @param string $indexName The name of the index |
||
20 | */ |
||
21 | abstract public function createIndex(string $indexName): void; |
||
22 | |||
23 | |||
24 | /** @return array<string> */ |
||
25 | protected function getStoredFields(string $indexName): array |
||
33 |