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 7c24ed7 commit f6bca6eCopy full SHA for f6bca6e
packages/database/src/QueryStatements/UpdateStatement.php
@@ -35,7 +35,7 @@ public function compile(DatabaseDialect $dialect): string
35
}
36
37
$query[] = 'SET ' . $this->values
38
- ->map(fn (mixed $_, mixed $key) => sprintf("`{$key}` = ?"))
+ ->map(fn (mixed $_, mixed $key) => "`{$key}` = ?")
39
->implode(', ');
40
41
if ($this->where->isNotEmpty()) {
0 commit comments