diff options
author | Côme Chilliet <come.chilliet@nextcloud.com> | 2022-12-01 11:41:54 +0100 |
---|---|---|
committer | Côme Chilliet (Rebase PR Action) <come-nc@users.noreply.github.com> | 2022-12-19 09:10:41 +0000 |
commit | 3cce9aa547d44cdb9ead142bb792a67be789b0e9 (patch) | |
tree | 81766a1f737798b24d4918d86c41c3a11da251d5 /lib/public/App/IAppManager.php | |
parent | 7996a12aef25b7ac8bd9a61f7b09f6806cef5ec4 (diff) | |
download | nextcloud-server-3cce9aa547d44cdb9ead142bb792a67be789b0e9.tar.gz nextcloud-server-3cce9aa547d44cdb9ead142bb792a67be789b0e9.zip |
Just use string for groups in enableAppForGroups
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
Diffstat (limited to 'lib/public/App/IAppManager.php')
-rw-r--r-- | lib/public/App/IAppManager.php | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/lib/public/App/IAppManager.php b/lib/public/App/IAppManager.php index f7c9d848099..764b3b0a5b5 100644 --- a/lib/public/App/IAppManager.php +++ b/lib/public/App/IAppManager.php @@ -42,7 +42,6 @@ use OCP\IUser; * @since 8.0.0 */ interface IAppManager { - /** * Returns the app information from "appinfo/info.xml". * @@ -117,7 +116,7 @@ interface IAppManager { * Enable an app only for specific groups * * @param string $appId - * @param \OCP\IGroup[] $groups + * @param string[] $groups * @param bool $forceEnable * @throws \Exception * @since 8.0.0 @@ -197,13 +196,13 @@ interface IAppManager { /** * @param \OCP\IGroup $group - * @return String[] + * @return string[] * @since 17.0.0 */ public function getEnabledAppsForGroup(IGroup $group): array; /** - * @param String $appId + * @param string $appId * @return string[] * @since 17.0.0 */ |