summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorLukas Reschke <lukas@owncloud.com>2015-01-27 17:34:25 +0100
committerLukas Reschke <lukas@owncloud.com>2015-01-27 17:34:25 +0100
commitbedf358b40065a58b5b939bd1a4d030655a9dc5a (patch)
tree9d30ef0c0ced565e4719915b0b1ad865517bc164 /lib
parent3478634df1ce2b7717bfe211425f59c4107688f8 (diff)
downloadnextcloud-server-bedf358b40065a58b5b939bd1a4d030655a9dc5a.tar.gz
nextcloud-server-bedf358b40065a58b5b939bd1a4d030655a9dc5a.zip
Use proper namespace
IAppManager lives in OCP\App and not in OCP. Fixes https://github.com/owncloud/core/issues/13710
Diffstat (limited to 'lib')
-rw-r--r--lib/private/appframework/dependencyinjection/dicontainer.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/appframework/dependencyinjection/dicontainer.php b/lib/private/appframework/dependencyinjection/dicontainer.php
index 5858d992d56..4229b251e29 100644
--- a/lib/private/appframework/dependencyinjection/dicontainer.php
+++ b/lib/private/appframework/dependencyinjection/dicontainer.php
@@ -65,7 +65,7 @@ class DIContainer extends SimpleContainer implements IAppContainer {
return $this->getServer()->getAppConfig();
});
- $this->registerService('OCP\\IAppManager', function($c) {
+ $this->registerService('OCP\\App\\IAppManager', function($c) {
return $this->getServer()->getAppManager();
});