| Total Complexity | 2 |
| Total Lines | 16 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| 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 |
||
| 14 | { |
||
| 15 | parent::createIndex($indexName); |
||
| 16 | } |
||
| 17 | |||
| 18 | |||
| 19 | public static function getIndexName(): string |
||
| 22 | } |
||
| 23 | } |
||
| 24 |