Total Complexity | 1 |
Total Lines | 17 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
14 | class TermVector extends AbstractParameterAnnotation |
||
15 | { |
||
16 | /** |
||
17 | * @Enum({ |
||
18 | * AmaTeam\ElasticSearch\Mapping\Type\Parameter\TermVectorParameter::VALUE_NO, |
||
19 | * AmaTeam\ElasticSearch\Mapping\Type\Parameter\TermVectorParameter::VALUE_YES, |
||
20 | * AmaTeam\ElasticSearch\Mapping\Type\Parameter\TermVectorParameter::VALUE_WITH_OFFSETS, |
||
21 | * AmaTeam\ElasticSearch\Mapping\Type\Parameter\TermVectorParameter::VALUE_WITH_POSITIONS, |
||
22 | * AmaTeam\ElasticSearch\Mapping\Type\Parameter\TermVectorParameter::VALUE_WITH_POSITIONS_AND_OFFSETS |
||
23 | * }) |
||
24 | * @var string |
||
25 | */ |
||
26 | public $value; |
||
27 | |||
28 | public function getParameter(): string |
||
33 |