From 4028a58adc8c3e40eae889fa23f4e2b35db6e8cc Mon Sep 17 00:00:00 2001 From: slawkens Date: Thu, 2 Feb 2023 16:20:09 +0100 Subject: [PATCH] Update OTS_DB_PDOQuery_PHP71.php --- system/libs/pot/OTS_DB_PDOQuery_PHP71.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/system/libs/pot/OTS_DB_PDOQuery_PHP71.php b/system/libs/pot/OTS_DB_PDOQuery_PHP71.php index 3bb91a46..b6406b9a 100644 --- a/system/libs/pot/OTS_DB_PDOQuery_PHP71.php +++ b/system/libs/pot/OTS_DB_PDOQuery_PHP71.php @@ -5,7 +5,7 @@ trait OTS_DB_PDOQuery /** * @return PDOStatement */ - public function query(?string $query = null, ?int $fetchMode = null, mixed ...$fetchModeArgs) + public function query(?string $query = null, ?int $fetchMode = null, mixed ...$fetchModeArgs): PDOStatement { return $this->doQuery($query, $fetchMode, ...$fetchModeArgs); }