From a54ff49c6bc03b3e9b5ec9dff8e4c3bb5c7bfd29 Mon Sep 17 00:00:00 2001
From: Joas Schilling <coding@schilljs.com>
Date: Mon, 23 Sep 2019 09:54:45 +0200
Subject: [PATCH] Remove inherited docs

Signed-off-by: Joas Schilling <coding@schilljs.com>
---
 lib/private/Group/Database.php | 16 ----------------
 1 file changed, 16 deletions(-)

diff --git a/lib/private/Group/Database.php b/lib/private/Group/Database.php
index 4aab8b8eaec..7c91319b3dc 100644
--- a/lib/private/Group/Database.php
+++ b/lib/private/Group/Database.php
@@ -420,11 +420,6 @@ class Database extends ABackend
 		return $count;
 	}
 
-	/**
-	 * @param string $gid
-	 * @return string
-	 * @since 17.0.0
-	 */
 	public function getDisplayName(string $gid): string {
 		$query = $this->dbConn->getQueryBuilder();
 		$query->select('displayname')
@@ -438,11 +433,6 @@ class Database extends ABackend
 		return (string) $displayName;
 	}
 
-	/**
-	 * @param string $gid
-	 * @return array
-	 * @since 14.0.0
-	 */
 	public function getGroupDetails(string $gid): array {
 		$displayName = $this->getDisplayName($gid);
 		if ($displayName !== '') {
@@ -452,12 +442,6 @@ class Database extends ABackend
 		return [];
 	}
 
-	/**
-	 * @param string $gid
-	 * @param string $displayName
-	 * @return bool
-	 * @since 18.0.0
-	 */
 	public function setDisplayName(string $gid, string $displayName): bool {
 		if (!$this->groupExists($gid)) {
 			return false;
-- 
GitLab