Files
LaLiga-BackEnd/vendor/doctrine/orm/src/Query/AST/ParenthesisExpression.php
T
2024-05-18 02:28:01 +02:00

28 lines
471 B
PHP

<?php
declare(strict_types=1);
namespace Doctrine\ORM\Query\AST;
/**
* ParenthesisExpression ::= "(" ArithmeticPrimary ")"
*/
class ParenthesisExpression extends Node
{
/** @var Node */
public $expression;
public function __construct(Node $expression)
{
$this->expression = $expression;
}
/**
* {@inheritDoc}
*/
public function dispatch($walker)
{
return $walker->walkParenthesisExpression($this);
}
}