We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8cfae9d commit b80a034Copy full SHA for b80a034
src/Builder/SqlBuilder.php
@@ -48,7 +48,7 @@ public function build(): string
48
$arrayValues[] = '('.implode(', ', $row).')';
49
}
50
51
- $sql .= "INSERT INTO {$this->schemaName} (".implode(', ', $this->columns)."') VALUES ".implode(', ', $arrayValues).';';
+ $sql .= "INSERT INTO {$this->schemaName} (".implode(', ', $this->columns).") VALUES ".implode(', ', $arrayValues).';';
52
53
return $sql;
54
0 commit comments