diff options
author | Morris Jobke <hey@morrisjobke.de> | 2019-03-05 16:00:47 +0100 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2019-03-05 16:00:47 +0100 |
commit | dd2496b2756633a961424560934a216ab1048e1b (patch) | |
tree | 32289e31339b8031061e3bb7db58e0b8ffc673c4 /apps/files_trashbin/lib | |
parent | 789aaa489d32fb96ce5ac63c9214e783c0a6c26e (diff) | |
download | nextcloud-server-dd2496b2756633a961424560934a216ab1048e1b.tar.gz nextcloud-server-dd2496b2756633a961424560934a216ab1048e1b.zip |
Use proper dependency injection for app manager
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
Diffstat (limited to 'apps/files_trashbin/lib')
-rw-r--r-- | apps/files_trashbin/lib/AppInfo/Application.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/files_trashbin/lib/AppInfo/Application.php b/apps/files_trashbin/lib/AppInfo/Application.php index 06a34e0df84..761298673ac 100644 --- a/apps/files_trashbin/lib/AppInfo/Application.php +++ b/apps/files_trashbin/lib/AppInfo/Application.php @@ -61,7 +61,8 @@ class Application extends App { \OC::$server->getGroupManager(), \OC::$server->getShareManager(), \OC::$server->getUserSession(), - \OC::$server->getConfig() + \OC::$server->getConfig(), + \OC::$server->getAppManager() ); }); |