File: /var/www/payments-gateway/vendor/doctrine/orm/src/Query/AST/SimpleArithmeticExpression.php
<?php
declare(strict_types=1);
namespace Doctrine\ORM\Query\AST;
use Doctrine\ORM\Query\SqlWalker;
/**
* SimpleArithmeticExpression ::= ArithmeticTerm {("+" | "-") ArithmeticTerm}*
*
* @link www.doctrine-project.org
*/
class SimpleArithmeticExpression extends Node
{
/** @param mixed[] $arithmeticTerms */
public function __construct(public array $arithmeticTerms)
{
}
public function dispatch(SqlWalker $walker): string
{
return $walker->walkSimpleArithmeticExpression($this);
}
}