field = $field; $this->fuzzy = $fuzzy; $this->default = $default; } /** * @return string */ public function getField() { return $this->field; } /** * @return bool */ public function isFuzzy() { return (bool) $this->fuzzy; } /** * @return bool */ public function isDefault() { return (bool) $this->default; } }