| Total Complexity | 3 |
| Total Lines | 23 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php declare(strict_types = 1); |
||
| 15 | class Indexer extends \Suilven\FreeTextSearch\Base\Indexer implements \Suilven\FreeTextSearch\Interfaces\Indexer |
||
| 16 | { |
||
| 17 | /** @var array<string, (string|int|float|bool)>|null */ |
||
| 18 | private static $payload = []; |
||
| 19 | |||
| 20 | |||
| 21 | // @phpstan-ignore-next-line |
||
| 22 | public function index(DataObject $dataObject): void |
||
| 25 | } |
||
| 26 | |||
| 27 | |||
| 28 | /** @return array<string, (string|int|float|bool)>|null */ |
||
| 29 | public static function getIndexedPayload(): ?array |
||
| 32 | } |
||
| 33 | |||
| 34 | |||
| 35 | public static function resetIndexedPayload(): void |
||
| 40 |