Skip to content

Commit a8e43c2

Browse files
committed
fix: backport escaping connection from laravel (resolves #112)
laravel/framework#48015
1 parent 79a0330 commit a8e43c2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Backports/ConnectionBackport.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ protected function escapeBool($value): string
9090
*/
9191
protected function escapeString($value): string
9292
{
93-
return $this->getPdo()->quote($value);
93+
return $this->getReadPdo()->quote($value);
9494
}
9595

9696
/**

0 commit comments

Comments
 (0)