summaryrefslogtreecommitdiffstats
path: root/lib/public/appframework/iappcontainer.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/public/appframework/iappcontainer.php')
-rw-r--r--lib/public/appframework/iappcontainer.php8
1 files changed, 8 insertions, 0 deletions
diff --git a/lib/public/appframework/iappcontainer.php b/lib/public/appframework/iappcontainer.php
index a577d31ed93..47eba58aece 100644
--- a/lib/public/appframework/iappcontainer.php
+++ b/lib/public/appframework/iappcontainer.php
@@ -32,35 +32,41 @@ use OCP\IContainer;
* @package OCP\AppFramework
*
* This container interface provides short cuts for app developers to access predefined app service.
+ * @since 6.0.0
*/
interface IAppContainer extends IContainer {
/**
* used to return the appname of the set application
* @return string the name of your application
+ * @since 6.0.0
*/
function getAppName();
/**
* @deprecated implements only deprecated methods
* @return IApi
+ * @since 6.0.0
*/
function getCoreApi();
/**
* @return \OCP\IServerContainer
+ * @since 6.0.0
*/
function getServer();
/**
* @param string $middleWare
* @return boolean
+ * @since 6.0.0
*/
function registerMiddleWare($middleWare);
/**
* @deprecated use IUserSession->isLoggedIn()
* @return boolean
+ * @since 6.0.0
*/
function isLoggedIn();
@@ -69,6 +75,7 @@ interface IAppContainer extends IContainer {
* @return boolean
* @deprecated use the groupmanager instead to find out if the user is in
* the admin group
+ * @since 6.0.0
*/
function isAdminUser();
@@ -77,6 +84,7 @@ interface IAppContainer extends IContainer {
* @param string $message
* @param string $level
* @return mixed
+ * @since 6.0.0
*/
function log($message, $level);