match(Lexer::T_IDENTIFIER); $parser->match(Lexer::T_OPEN_PARENTHESIS); $this->dateString = $parser->ArithmeticPrimary(); $parser->match(Lexer::T_COMMA); $this->dateFormat = $parser->ArithmeticPrimary(); $parser->match(Lexer::T_CLOSE_PARENTHESIS); } public function getSql(SqlWalker $sqlWalker) { return 'DATE_PART(' . $this->dateString->dispatch($sqlWalker) . ', ' . $this->dateFormat->dispatch($sqlWalker) . ')'; } }