summaryrefslogtreecommitdiffstats
path: root/apps/files_sharing/appinfo/app.php
diff options
context:
space:
mode:
authorJoas Schilling <nickvergessen@owncloud.com>2016-05-17 10:31:50 +0200
committerJoas Schilling <nickvergessen@owncloud.com>2016-05-25 14:59:59 +0200
commit5001036fd49cecdf1dcda1b4aed0be1b24d18c24 (patch)
tree47fd3d8ad8a60361603fd2f00dc2e26ce843ca7c /apps/files_sharing/appinfo/app.php
parentc5ade48c042fc8d5a2a5e3a3c62854e78711eee1 (diff)
downloadnextcloud-server-5001036fd49cecdf1dcda1b4aed0be1b24d18c24.tar.gz
nextcloud-server-5001036fd49cecdf1dcda1b4aed0be1b24d18c24.zip
Move classes from outside lib/ to PSR-4
Diffstat (limited to 'apps/files_sharing/appinfo/app.php')
-rw-r--r--apps/files_sharing/appinfo/app.php4
1 files changed, 1 insertions, 3 deletions
diff --git a/apps/files_sharing/appinfo/app.php b/apps/files_sharing/appinfo/app.php
index 32eee9b6c9c..e96269d1148 100644
--- a/apps/files_sharing/appinfo/app.php
+++ b/apps/files_sharing/appinfo/app.php
@@ -26,15 +26,13 @@
*
*/
-namespace OCA\Files_Sharing\Appinfo;
-
$l = \OC::$server->getL10N('files_sharing');
\OC::$CLASSPATH['OC_Share_Backend_File'] = 'files_sharing/lib/share/file.php';
\OC::$CLASSPATH['OC_Share_Backend_Folder'] = 'files_sharing/lib/share/folder.php';
\OC::$CLASSPATH['OC\Files\Storage\Shared'] = 'files_sharing/lib/sharedstorage.php';
-$application = new Application();
+$application = new \OCA\Files_Sharing\AppInfo\Application();
$application->registerMountProviders();
\OCA\Files_Sharing\Helper::registerHooks();