File "ParenthesisExpression.php"

Full Path: /home/warrior1/public_html/wp-content/plugins/mailpoet/vendor-prefixed/doctrine/orm/lib/Doctrine/ORM/Query/AST/ParenthesisExpression.php
File size: 357 bytes
MIME-type: text/x-php
Charset: utf-8

<?php
declare (strict_types=1);
namespace MailPoetVendor\Doctrine\ORM\Query\AST;
if (!defined('ABSPATH')) exit;
class ParenthesisExpression extends Node
{
 public $expression;
 public function __construct(Node $expression)
 {
 $this->expression = $expression;
 }
 public function dispatch($walker)
 {
 return $walker->walkParenthesisExpression($this);
 }
}