File "Composite.php"

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

<?php
declare (strict_types=1);
namespace MailPoetVendor\Doctrine\ORM\Query\Expr;
if (!defined('ABSPATH')) exit;
use function implode;
use function is_object;
use function preg_match;
class Composite extends Base
{
 public function __toString()
 {
 if ($this->count() === 1) {
 return (string) $this->parts[0];
 }
 $components = [];
 foreach ($this->parts as $part) {
 $components[] = $this->processQueryPart($part);
 }
 return implode($this->separator, $components);
 }
 private function processQueryPart($part) : string
 {
 $queryPart = (string) $part;
 if (is_object($part) && $part instanceof self && $part->count() > 1) {
 return $this->preSeparator . $queryPart . $this->postSeparator;
 }
 // Fixes DDC-1237: User may have added a where item containing nested expression (with "OR" or "AND")
 if (preg_match('/\\s(OR|AND)\\s/i', $queryPart)) {
 return $this->preSeparator . $queryPart . $this->postSeparator;
 }
 return $queryPart;
 }
}