| Total Complexity | 3 |
| Total Lines | 23 |
| Duplicated Lines | 0 % |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php declare(strict_types = 1); |
||
| 6 | class IndexCreator extends \Suilven\FreeTextSearch\Base\IndexCreator implements |
||
| 7 | \Suilven\FreeTextSearch\Interfaces\IndexCreator |
||
| 8 | { |
||
| 9 | |||
| 10 | /** @var string */ |
||
| 11 | private static $indexName; |
||
| 12 | |||
| 13 | public function createIndex(string $indexName): void |
||
| 16 | } |
||
| 17 | |||
| 18 | |||
| 19 | /** @return array<string> */ |
||
| 20 | public function getIndexStoredFields(): array |
||
| 21 | { |
||
| 22 | return $this->getStoredFields('sitetree'); |
||
| 23 | } |
||
| 24 | |||
| 25 | |||
| 26 | public static function getIndexName(): string |
||
| 29 | } |
||
| 30 | } |
||
| 31 |