1 | <?php |
||
14 | namespace ONGR\ElasticsearchDSL; |
||
15 | |||
16 | trait FieldAwareTrait |
||
17 | { |
||
18 | private ?string $field = null; |
||
|
|||
19 | |||
20 | public function getField(): ?string |
||
21 | { |
||
22 | return $this->field; |
||
23 | } |
||
24 | |||
25 | public function setField(?string $field): static |
||
26 | { |
||
27 | $this->field = $field; |
||
28 | |||
29 | return $this; |
||
30 | } |
||
31 | } |
||
32 |