operator = $operator; $this->lhs = $col; $this->value = $val; } public function getLHS() { return $this->lhs; } public function getValue() { return $this->value; } public function getOperator(): string { return $this->operator; } }