diff options
author | Joas Schilling <coding@schilljs.com> | 2019-09-23 09:54:45 +0200 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2019-09-27 14:29:56 +0200 |
commit | a54ff49c6bc03b3e9b5ec9dff8e4c3bb5c7bfd29 (patch) | |
tree | 25343f1ad1f93fa8448a4323e212e1201e603fab /lib/private/Group/Database.php | |
parent | 653628c8fb69dc3f9d26751520f91e43a18f17ae (diff) | |
download | nextcloud-server-a54ff49c6bc03b3e9b5ec9dff8e4c3bb5c7bfd29.tar.gz nextcloud-server-a54ff49c6bc03b3e9b5ec9dff8e4c3bb5c7bfd29.zip |
Remove inherited docs
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'lib/private/Group/Database.php')
-rw-r--r-- | lib/private/Group/Database.php | 16 |
1 files changed, 0 insertions, 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; |