47 lines
No EOL
1.3 KiB
PHP
47 lines
No EOL
1.3 KiB
PHP
<?php
|
|
/**
|
|
* @author Ulrich Hecht <ulrich.hecht@hecht-software.de>
|
|
* @date 10/31/2016
|
|
*/
|
|
|
|
namespace AppBundle\DoctrineExtensions\Query\MySql;
|
|
|
|
|
|
use Doctrine\ORM\Query\AST\Functions\FunctionNode;
|
|
use Doctrine\ORM\Query\Lexer;
|
|
|
|
class DateAdd extends FunctionNode
|
|
{
|
|
public $firstDateExpression = null;
|
|
public $intervalExpression = null;
|
|
public $unit = null;
|
|
|
|
public function parse(\Doctrine\ORM\Query\Parser $parser)
|
|
{
|
|
$parser->match(Lexer::T_IDENTIFIER);
|
|
$parser->match(Lexer::T_OPEN_PARENTHESIS);
|
|
|
|
$this->firstDateExpression = $parser->ArithmeticPrimary();
|
|
|
|
$parser->match(Lexer::T_COMMA);
|
|
$parser->match(Lexer::T_IDENTIFIER);
|
|
|
|
$this->intervalExpression = $parser->ArithmeticPrimary();
|
|
|
|
$parser->match(Lexer::T_IDENTIFIER);
|
|
|
|
/* @var $lexer Lexer */
|
|
$lexer = $parser->getLexer();
|
|
$this->unit = $lexer->token['value'];
|
|
|
|
$parser->match(Lexer::T_CLOSE_PARENTHESIS);
|
|
}
|
|
|
|
public function getSql(\Doctrine\ORM\Query\SqlWalker $sqlWalker)
|
|
{
|
|
return 'DATE_ADD(' .
|
|
$this->firstDateExpression->dispatch($sqlWalker) . ', INTERVAL ' .
|
|
$this->intervalExpression->dispatch($sqlWalker) . ' ' . $this->unit .
|
|
')';
|
|
}
|
|
} |