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