Skip to content

Commit 2205bc1

Browse files
naimsolonggithub-actions[bot]
authored andcommitted
Fix styling
1 parent b80a034 commit 2205bc1

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)