FileMaster
Search
Toggle Dark Mode
Home
/
.
/
wp-content
/
plugins
/
mailpoet
/
vendor-prefixed
/
doctrine
/
orm
/
src
/
Query
/
Expr
Edit File: Composite.php
<?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; } }
Save
Back