summaryrefslogtreecommitdiffstats
path: root/lib/public/appframework
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2013-08-31 21:34:29 +0200
committerThomas Müller <thomas.mueller@tmit.eu>2013-08-31 21:34:29 +0200
commit206f83941b26b16f89e695ae84b998e9cf11132a (patch)
treee19b0f42c4edda179d1f684694653ddf973050af /lib/public/appframework
parent97bdf008b1cefaa092e23fc5a9bad787e755ed77 (diff)
downloadnextcloud-server-206f83941b26b16f89e695ae84b998e9cf11132a.tar.gz
nextcloud-server-206f83941b26b16f89e695ae84b998e9cf11132a.zip
move new interfaces into lib/public and OCP
Diffstat (limited to 'lib/public/appframework')
-rw-r--r--lib/public/appframework/iappcontainer.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/public/appframework/iappcontainer.php b/lib/public/appframework/iappcontainer.php
index db909241e5d..c8f6229dd9e 100644
--- a/lib/public/appframework/iappcontainer.php
+++ b/lib/public/appframework/iappcontainer.php
@@ -23,7 +23,7 @@
namespace OCP\AppFramework;
use OCP\AppFramework\IApi;
-use OCP\Core\IContainer;
+use OCP\IContainer;
/**
* Class IAppContainer
@@ -39,7 +39,7 @@ interface IAppContainer extends IContainer{
function getCoreApi();
/**
- * @return \OCP\Core\IServerContainer
+ * @return \OCP\IServerContainer
*/
function getServer();
}