Skip to content

Commit 611b8ab

Browse files
committed
Revert unintended changes in boolean esacping in Doctrine DBAL adapter
1 parent 16742a5 commit 611b8ab

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Bridges/DoctrineDbal/DoctrineAdapter.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ public function escapeInt(int $value): string
5656

5757
public function escapeBool(bool $value): string
5858
{
59-
return (string) $this->conn->getDatabasePlatform()->convertBooleans($value);
59+
return $this->escapeString((string) (int) $value);
6060
}
6161

6262

0 commit comments

Comments
 (0)