boost = $boost; return $this; } public function toArray(): array { $query = parent::toArray()['match']; $query[$this->field]['boost'] = $this->boost; return [ 'match_phrase' => $query, ]; } }