expander = $expander; } /** * @param mixed $value Value to match. * * @return boolean */ public function match($value) { if ($this->expander->match($value)) { $this->error = 'Expander match this value.'; return false; } return true; } }