diff options
author | Arthur Schiwon <blizzz@arthur-schiwon.de> | 2021-04-22 16:23:01 +0200 |
---|---|---|
committer | backportbot[bot] <backportbot[bot]@users.noreply.github.com> | 2021-04-22 17:13:24 +0000 |
commit | 04b851b8b8346c77b11b3f68fe6c139a1f5f8a41 (patch) | |
tree | 5e1562f6eb82899bf05e673b6a3d33bdb5b3c273 | |
parent | 20a3df98884cf3af3abd81691ddf470cf6e69657 (diff) | |
download | nextcloud-server-04b851b8b8346c77b11b3f68fe6c139a1f5f8a41.tar.gz nextcloud-server-04b851b8b8346c77b11b3f68fe6c139a1f5f8a41.zip |
remove undefined parameter, add description
Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
-rw-r--r-- | lib/public/DB/IResult.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/public/DB/IResult.php b/lib/public/DB/IResult.php index 10c788ebbf6..caa3fd8e88d 100644 --- a/lib/public/DB/IResult.php +++ b/lib/public/DB/IResult.php @@ -66,7 +66,7 @@ interface IResult { 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 * |