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