| 1 | <?php |
||
| 15 | class Terms extends AbstractQuery |
||
| 16 | { |
||
| 17 | /** |
||
| 18 | * @var string |
||
| 19 | */ |
||
| 20 | private $field; |
||
| 21 | |||
| 22 | /** |
||
| 23 | * @var string[] |
||
| 24 | */ |
||
| 25 | private $terms; |
||
| 26 | |||
| 27 | /** |
||
| 28 | * @var string[]|null |
||
| 29 | */ |
||
| 30 | private $lookup; |
||
| 31 | |||
| 32 | /** |
||
| 33 | * @param string[] $terms Terms list, leave empty if building a terms-lookup query |
||
| 34 | */ |
||
| 35 | public function __construct(string $field, array $terms = []) |
||
| 44 | |||
| 45 | /** |
||
| 46 | * Sets terms for the query. |
||
| 47 | * |
||
| 48 | * @param string[] |
||
| 49 | */ |
||
| 50 | public function setTerms(array $terms): self |
||
| 56 | |||
| 57 | /** |
||
| 58 | * Adds a single term to the list. |
||
| 59 | */ |
||
| 60 | public function addTerm(string $term): self |
||
| 66 | |||
| 67 | public function setTermsLookup(string $index, string $id, string $path): self |
||
| 77 | |||
| 78 | /** |
||
| 79 | * {@inheritdoc} |
||
| 80 | */ |
||
| 81 | public function toArray(): array |
||
| 95 | } |
||
| 96 |
Our type inference engine has found an assignment to a property that is incompatible with the declared type of that property.
Either this assignment is in error or the assigned type should be added to the documentation/type hint for that property..