welcome back to dyb-tech
This commit is contained in:
@@ -0,0 +1,27 @@
|
||||
<?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);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user