File "Andx.php"

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

<?php
declare (strict_types=1);
namespace MailPoetVendor\Doctrine\ORM\Query\Expr;
if (!defined('ABSPATH')) exit;
class Andx extends Composite
{
 protected $separator = ' AND ';
 protected $allowedClasses = [Comparison::class, Func::class, Orx::class, self::class];
 protected $parts = [];
 public function getParts()
 {
 return $this->parts;
 }
}