Conditions | 2 |
Paths | 2 |
Total Lines | 10 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php namespace Nord\Lumen\Elasticsearch\Search\Query\FullText; |
||
39 | protected function applyOptions(array $match) |
||
40 | { |
||
41 | $multiMatch = parent::applyOptions($match); |
||
42 | |||
43 | $tieBreaker = $this->getTieBreaker(); |
||
44 | if (null !== $tieBreaker) { |
||
45 | $multiMatch['tie_breaker'] = $tieBreaker; |
||
46 | } |
||
47 | |||
48 | return $multiMatch; |
||
49 | } |
||
51 |