Skip to content

Commit 39464f0

Browse files
authored
Format code (#5139)
1 parent 5c9edfe commit 39464f0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Rules/DatabaseRule.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,6 +138,6 @@ public function queryCallbacks(): array
138138
*/
139139
protected function formatWheres(): string
140140
{
141-
return collect($this->wheres)->map(fn ($where) => $where['column'] . ',' . '"' . str_replace('"', '""', (string) $where['value']) . '"')->implode(',');
141+
return collect($this->wheres)->map(fn ($where) => $where['column'] . ',"' . str_replace('"', '""', (string) $where['value']) . '"')->implode(',');
142142
}
143143
}

0 commit comments

Comments
 (0)