From a079a0c2091f19c55067a37e391390c1088da2d0 Mon Sep 17 00:00:00 2001 From: ArnabChatterjee20k Date: Fri, 16 May 2025 18:54:57 +0530 Subject: [PATCH] updated PDOStatement to mixed --- src/Database/Adapter/Postgres.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Database/Adapter/Postgres.php b/src/Database/Adapter/Postgres.php index 2cf4bef9c..8678afcaa 100644 --- a/src/Database/Adapter/Postgres.php +++ b/src/Database/Adapter/Postgres.php @@ -84,7 +84,7 @@ public function rollbackTransaction(): bool return $result; } - private function execute(\PDOStatement $stmt): bool + private function execute(mixed $stmt): bool { $pdo = $this->getPDO();