| Conditions | 1 |
| Paths | 1 |
| Total Lines | 7 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 6 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 93 | 4 | public function compile(): array |
|
| 94 | { |
||
| 95 | 4 | return \array_filter([ |
|
| 96 | 4 | 'must' => \elastics_compile(...$this->must), |
|
| 97 | 4 | 'must_not' => \elastics_compile(...$this->mustNot), |
|
| 98 | 4 | 'should' => \elastics_compile(...$this->should), |
|
| 99 | 4 | 'filter' => \elastics_compile(...$this->filter), |
|
| 100 | ]); |
||
| 103 |