value = $value; } /** * Get the value of the expression. * * @return mixed */ public function getValue() { return $this->value; } /** * Get the value of the expression. * * @return string */ public function __toString() { return (string) $this->getValue(); } }