Elastica\Query\MoreLikeThis::setBoostTerms PHP Method

setBoostTerms() public method

Set boost terms.
public setBoostTerms ( boolean $boostTerms )
$boostTerms boolean
    public function setBoostTerms($boostTerms)
    {
        return $this->setParam('boost_terms', (bool) $boostTerms);
    }

Usage Example

 /**
  * @group unit
  */
 public function testSetBoostTerms()
 {
     $query = new MoreLikeThis();
     $boost = false;
     $query->setBoostTerms($boost);
     $this->assertEquals($boost, $query->getParam('boost_terms'));
 }