| Total Complexity | 1 |
| Total Lines | 16 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 14 | class IndexOptions extends AbstractParameterAnnotation |
||
| 15 | { |
||
| 16 | /** |
||
| 17 | * @Enum({ |
||
| 18 | * AmaTeam\ElasticSearch\Mapping\Type\Parameter\IndexOptionsParameter::VALUE_OFFSETS, |
||
| 19 | * AmaTeam\ElasticSearch\Mapping\Type\Parameter\IndexOptionsParameter::VALUE_POSITIONS, |
||
| 20 | * AmaTeam\ElasticSearch\Mapping\Type\Parameter\IndexOptionsParameter::VALUE_FREQUENCIES, |
||
| 21 | * AmaTeam\ElasticSearch\Mapping\Type\Parameter\IndexOptionsParameter::VALUE_DOCUMENTS |
||
| 22 | * }) |
||
| 23 | * @var string |
||
| 24 | */ |
||
| 25 | public $value; |
||
| 26 | |||
| 27 | public function getParameter(): string |
||
| 32 |