walkArithmeticExpression($this->dateExpression), $sqlWalker->walkStringPrimary($this->fromTz), $sqlWalker->walkStringPrimary($this->toTz) ); } /** * @inheritdoc */ public function parse(Parser $parser) { $parser->match(Lexer::T_IDENTIFIER); $parser->match(Lexer::T_OPEN_PARENTHESIS); $this->dateExpression = $parser->ArithmeticExpression(); $parser->match(Lexer::T_COMMA); $this->fromTz = $parser->StringPrimary(); $parser->match(Lexer::T_COMMA); $this->toTz = $parser->StringPrimary(); $parser->match(Lexer::T_CLOSE_PARENTHESIS); } }