From 2284730d40d374f9b6b05bb3c9015eb9f0bc5bf5 Mon Sep 17 00:00:00 2001 From: Pierre Rineau Date: Tue, 27 Feb 2024 09:52:30 +0100 Subject: [PATCH] no issue - fixes minor bug in result --- src/Result/DbalResult.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Result/DbalResult.php b/src/Result/DbalResult.php index 59871dc..82710a5 100644 --- a/src/Result/DbalResult.php +++ b/src/Result/DbalResult.php @@ -50,7 +50,7 @@ public function fetchAssociative(): null|array; * @return mixed * SQL value. Some drivers might already have converted it. */ - public function fetchOne(int|string $valueColumn = 1): mixed; + public function fetchOne(int|string $valueColumn = 0): mixed; /** * Returns an array containing all of the result rows represented as numeric arrays.