fix typing on Doctrine FunctionNode Age

This commit is contained in:
Julien Fastré 2023-07-28 02:52:55 +02:00
parent a9c8f464bb
commit 55b8502896
Signed by: julienfastre
GPG Key ID: BDE2190974723FCB

View File

@ -12,15 +12,16 @@ declare(strict_types=1);
namespace Chill\MainBundle\Doctrine\DQL;
use Doctrine\ORM\Query\AST\Functions\FunctionNode;
use Doctrine\ORM\Query\AST\PathExpression;
use Doctrine\ORM\Query\Lexer;
use Doctrine\ORM\Query\Parser;
use Doctrine\ORM\Query\SqlWalker;
class Age extends FunctionNode
{
private \Doctrine\ORM\Query\AST\ArithmeticTerm|\Doctrine\ORM\Query\AST\SimpleArithmeticExpression|null $value1 = null;
private mixed $value1 = null;
private \Doctrine\ORM\Query\AST\ArithmeticTerm|\Doctrine\ORM\Query\AST\SimpleArithmeticExpression|null $value2 = null;
private mixed $value2 = null;
public function getSql(SqlWalker $sqlWalker)
{