diff options
author | Christoph Wurst <christoph@winzerhof-wurst.at> | 2023-05-31 15:06:25 +0200 |
---|---|---|
committer | Christoph Wurst <christoph@winzerhof-wurst.at> | 2023-05-31 15:06:25 +0200 |
commit | dd2d50471e87fa0be8efe60171582b86cefec127 (patch) | |
tree | a854fd8dda5a04a52be5d102ab1d33947d81c628 /lib | |
parent | 2845a04827c457b98ef82148be16b36f5ff8dcd5 (diff) | |
download | nextcloud-server-dd2d50471e87fa0be8efe60171582b86cefec127.tar.gz nextcloud-server-dd2d50471e87fa0be8efe60171582b86cefec127.zip |
chore!: Drop \OC_App::isEnabled
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/private/legacy/OC_App.php | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/lib/private/legacy/OC_App.php b/lib/private/legacy/OC_App.php index b1da6a1d2fb..411f29cc19d 100644 --- a/lib/private/legacy/OC_App.php +++ b/lib/private/legacy/OC_App.php @@ -242,19 +242,6 @@ class OC_App { } /** - * checks whether or not an app is enabled - * - * @param string $app app - * @return bool - * @deprecated 13.0.0 use \OC::$server->getAppManager()->isEnabledForUser($appId) - * - * This function checks whether or not an app is enabled. - */ - public static function isEnabled(string $app): bool { - return \OC::$server->getAppManager()->isEnabledForUser($app); - } - - /** * enables an app * * @param string $appId |