raw = $raw; $this->values = $values; } public function build(): string { if ($this->raw !== []) { return '(' . implode(', ', $this->raw) . ')'; } return '(' . implode(', ', $this->values) . ')'; } public function __toString(): string { return $this->build(); } }