Total Complexity | 2 |
Total Lines | 26 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
9 | trait HasField |
||
10 | { |
||
11 | |||
12 | /** |
||
13 | * @var string The field in the index to query on. |
||
14 | */ |
||
15 | protected $field; |
||
16 | |||
17 | /** |
||
18 | * @return string |
||
19 | */ |
||
20 | public function getField() |
||
21 | { |
||
22 | return $this->field; |
||
23 | } |
||
24 | |||
25 | /** |
||
26 | * @param string $field |
||
27 | * |
||
28 | * @return $this |
||
29 | */ |
||
30 | public function setField($field) |
||
35 | } |
||
36 | } |
||
37 |