Use proper namespace

IAppManager lives in OCP\App and not in OCP.

Fixes https://github.com/owncloud/core/issues/13710
This commit is contained in:
Lukas Reschke 2015-01-27 17:34:25 +01:00
parent 3478634df1
commit bedf358b40
1 changed files with 1 additions and 1 deletions

View File

@ -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();
});