diff options
author | Roeland Douma <unix@rullzer.com> | 2015-04-19 15:40:53 +0200 |
---|---|---|
committer | Roeland Douma <unix@rullzer.com> | 2015-04-19 15:40:53 +0200 |
commit | 3cb5dd68e69aa3867839d79020c1bd272c770e8b (patch) | |
tree | 6340623898a215779e00ad5c2f43b2f05fd74391 /lib/public/appframework/iappcontainer.php | |
parent | 80b892e7ed7b2d6b5220840e1bb3b11115c72cb4 (diff) | |
parent | c056c5201061670b0a51d4bd242e704e00050d4b (diff) | |
download | nextcloud-server-3cb5dd68e69aa3867839d79020c1bd272c770e8b.tar.gz nextcloud-server-3cb5dd68e69aa3867839d79020c1bd272c770e8b.zip |
Merge pull request #15737 from owncloud/add-deprecated-version
Add version to @deprecated tags
Diffstat (limited to 'lib/public/appframework/iappcontainer.php')
-rw-r--r-- | lib/public/appframework/iappcontainer.php | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/lib/public/appframework/iappcontainer.php b/lib/public/appframework/iappcontainer.php index 47eba58aece..64b1082aa97 100644 --- a/lib/public/appframework/iappcontainer.php +++ b/lib/public/appframework/iappcontainer.php @@ -44,7 +44,7 @@ interface IAppContainer extends IContainer { function getAppName(); /** - * @deprecated implements only deprecated methods + * @deprecated 8.0.0 implements only deprecated methods * @return IApi * @since 6.0.0 */ @@ -64,23 +64,21 @@ interface IAppContainer extends IContainer { function registerMiddleWare($middleWare); /** - * @deprecated use IUserSession->isLoggedIn() + * @deprecated 8.0.0 use IUserSession->isLoggedIn() * @return boolean * @since 6.0.0 */ function isLoggedIn(); /** - * @deprecated use IGroupManager->isAdmin($userId) + * @deprecated 8.0.0 use IGroupManager->isAdmin($userId) * @return boolean - * @deprecated use the groupmanager instead to find out if the user is in - * the admin group * @since 6.0.0 */ function isAdminUser(); /** - * @deprecated use the ILogger instead + * @deprecated 8.0.0 use the ILogger instead * @param string $message * @param string $level * @return mixed |