From e7691ef6abfccca8b081f6e176e60ac650bc8b89 Mon Sep 17 00:00:00 2001 From: Arthur Schiwon Date: Thu, 22 Apr 2021 16:23:01 +0200 Subject: [PATCH] remove undefined parameter, add description Signed-off-by: Arthur Schiwon --- lib/public/DB/IResult.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/public/DB/IResult.php b/lib/public/DB/IResult.php index 10c788ebbf6a5..caa3fd8e88de4 100644 --- a/lib/public/DB/IResult.php +++ b/lib/public/DB/IResult.php @@ -66,7 +66,7 @@ public function fetchAll(int $fetchMode = PDO::FETCH_ASSOC): array; public function fetchColumn(); /** - * @param int $columnIndex + * Returns the first value of the next row of the result or FALSE if there are no more rows. * * @return false|mixed *