setParam('precision_threshold', $precisionThreshold); } /** * @param bool $rehash * * @return $this */ public function setRehash($rehash) { if (!is_bool($rehash)) { throw new \InvalidArgumentException('rehash only supports boolean values'); } return $this->setParam('rehash', $rehash); } }