operator = $operator; $this->value = $value; } public function setOperator($operator) { $this->operator = $operator; return $this; } public function getOperator() { return $this->operator; } public function setValue($value) { $this->value = $value; return $this; } public function getValue() { return $this->value; } }