sign} (\n"; $parts = []; if ($leftType) { $parts[] = "LEFTARG={$leftType}"; } $parts[] = "RIGHTARG={$rightType}"; $parts[] = "PROCEDURE={$procedure}"; if ($this->commutator) { $parts[] = "COMMUTATOR = {$this->commutator}"; } if ($this->negator) { $parts[] = "NEGATOR = {$this->negator}"; } if ($this->restrict) { $parts[] = "RESTRICT = {$this->restrict}"; } if ($this->join) { $parts[] = "JOIN = {$this->join}"; } if ($this->hashes) { $parts[] = "HASHES"; } if ($this->merges) { $parts[] = "MERGES"; } $sql .= implode(",\n", array_map(fn(string $str) => " {$str}", $parts)) . "\n"; $sql .= ");\n"; return $sql; } }