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(string|Stringable $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; } }