File "ExistsExpression.php"

Full Path: /home/warrior1/public_html/wp-content/plugins/mailpoet/vendor-prefixed/doctrine/orm/lib/Doctrine/ORM/Query/AST/ExistsExpression.php
File size: 358 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 ExistsExpression extends Node
{
 public $not;
 public $subselect;
 public function __construct($subselect)
 {
 $this->subselect = $subselect;
 }
 public function dispatch($sqlWalker)
 {
 return $sqlWalker->walkExistsExpression($this);
 }
}