value = $value; } /** * Get the value of the expression. * * @param \FluentBooking\Framework\Database\BaseGrammar $grammar * @return mixed */ public function getValue(BaseGrammar $grammar) { return $this->value; } /** * Convert the object to its string representation. * * @return string [description] */ public function __toString() { return (string) $this->value; } }