Elastica\Query\MoreLikeThis::setStopWords PHP Method

setStopWords() public method

Set stop words.
public setStopWords ( array $stopWords )
$stopWords array
    public function setStopWords(array $stopWords)
    {
        return $this->setParam('stop_words', $stopWords);
    }

Usage Example

 /**
  * @group unit
  */
 public function testSetStopWords()
 {
     $query = new MoreLikeThis();
     $stopWords = array('no', 'yes', 'test');
     $query->setStopWords($stopWords);
     $this->assertEquals($stopWords, $query->getParam('stop_words'));
 }