FileMaster
Search
Toggle Dark Mode
Home
/
.
/
wp-content
/
plugins
/
mailpoet
/
vendor-prefixed
/
doctrine
/
orm
/
src
/
Query
/
AST
Edit File: ExistsExpression.php
<?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, bool $not = \false) { $this->subselect = $subselect; $this->not = $not; } public function dispatch($sqlWalker) { return $sqlWalker->walkExistsExpression($this); } }
Save
Back