Browse Source

fixup! feat(database): Add replacements for deprecated fetch and fetchAll

Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Christoph Wurst 8 months ago
parent
commit
a6c3a7dfbc
1 changed files with 2 additions and 2 deletions
  1. 2 2
      lib/public/DB/IResult.php

+ 2 - 2
lib/public/DB/IResult.php

@@ -131,10 +131,10 @@ interface IResult {
 	/**
 	 * Returns an array containing all of the result rows represented as numeric arrays
 	 *
-	 * @return list<list<mixed>>
+	 * @return list<mixed>
 	 * @throws Exception
 	 *
-	 * @since 21.0.0
+	 * @since 28.0.0
 	 */
 	public function fetchFirstColumn(): array;