Skip to content

Commit b80a034

Browse files
committed
Fix typo
1 parent 8cfae9d commit b80a034

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Builder/SqlBuilder.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ public function build(): string
4848
$arrayValues[] = '('.implode(', ', $row).')';
4949
}
5050

51-
$sql .= "INSERT INTO {$this->schemaName} (".implode(', ', $this->columns)."') VALUES ".implode(', ', $arrayValues).';';
51+
$sql .= "INSERT INTO {$this->schemaName} (".implode(', ', $this->columns).") VALUES ".implode(', ', $arrayValues).';';
5252

5353
return $sql;
5454
}

0 commit comments

Comments
 (0)