diff options
author | Morris Jobke <hey@morrisjobke.de> | 2021-04-22 20:59:29 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-22 20:59:29 +0200 |
commit | 13e05566882e4ead59f985e7cbbc9d79ac6236a4 (patch) | |
tree | 5e1562f6eb82899bf05e673b6a3d33bdb5b3c273 | |
parent | 20a3df98884cf3af3abd81691ddf470cf6e69657 (diff) | |
parent | 04b851b8b8346c77b11b3f68fe6c139a1f5f8a41 (diff) | |
download | nextcloud-server-13e05566882e4ead59f985e7cbbc9d79ac6236a4.tar.gz nextcloud-server-13e05566882e4ead59f985e7cbbc9d79ac6236a4.zip |
Merge pull request #26702 from nextcloud/backport/26699/stable21
[stable21] remove undefined parameter, add description
-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 * |