public function setMinWordLength($minWordLength) { return $this->setParam('min_word_length', (int) $minWordLength); }
/** * @group unit */ public function testSetMinWordLength() { $query = new MoreLikeThis(); $length = 4; $query->setMinWordLength($length); $this->assertEquals($length, $query->getParam('min_word_length')); }