WIP: Symfony 6 project remake #2

Draft
skobkin wants to merge 103 commits from symfony6_remake into master
Showing only changes of commit 2029adc48d - Show all commits

View file

@ -1,15 +1,17 @@
<?php <?php
declare(strict_types=1);
namespace src\PointToolsBundle\DQL; namespace App\Doctrine\DQL;
use Doctrine\ORM\Query\AST\Functions\FunctionNode; use Doctrine\ORM\Query\AST\Functions\FunctionNode;
use Doctrine\ORM\Query\Lexer; use Doctrine\ORM\Query\{Lexer, Parser, SqlWalker};
/** TODO: check if still needed */
class Day extends FunctionNode class Day extends FunctionNode
{ {
public $dateExpression; public $dateExpression;
public function parse(\Doctrine\ORM\Query\Parser $parser) public function parse(Parser $parser): void
{ {
$parser->match(Lexer::T_IDENTIFIER); $parser->match(Lexer::T_IDENTIFIER);
$parser->match(Lexer::T_OPEN_PARENTHESIS); $parser->match(Lexer::T_OPEN_PARENTHESIS);
@ -19,8 +21,8 @@ class Day extends FunctionNode
$parser->match(Lexer::T_CLOSE_PARENTHESIS); $parser->match(Lexer::T_CLOSE_PARENTHESIS);
} }
public function getSql(\Doctrine\ORM\Query\SqlWalker $sqlWalker) public function getSql(SqlWalker $sqlWalker): string
{ {
return 'date_trunc(\'day\', '.$this->dateExpression->dispatch($sqlWalker).')'; return 'date_trunc(\'day\', '.$this->dateExpression->dispatch($sqlWalker).')';
} }
} }