Total Complexity | 1 |
Total Lines | 23 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
13 | class PrefixQuery extends QueryAbstract implements HasBoostOption |
||
14 | { |
||
15 | use BoostOption; |
||
16 | use JsonSerializeAsSimpleOrExtended { |
||
17 | jsonSerializeAsSimpleOrExtended as public jsonSerialize; |
||
18 | } |
||
19 | |||
20 | const NAME = 'prefix'; |
||
21 | |||
22 | /** |
||
23 | * @var string |
||
24 | */ |
||
25 | private $field; |
||
26 | |||
27 | /** |
||
28 | * @var mixed |
||
29 | */ |
||
30 | private $value; |
||
31 | |||
32 | public function __construct(string $field, $value) |
||
38 |