table = $table; $this->columns = $columns; $this->options = $options; } public function build(): string { return trim( $this->table . ' (' . implode(', ', Context::escapeAll($this->columns)) . ') ' . $this->options, ); } public function __toString(): string { return $this->build(); } }