diff options
author | Joas Schilling <nickvergessen@owncloud.com> | 2016-05-17 10:31:50 +0200 |
---|---|---|
committer | Joas Schilling <nickvergessen@owncloud.com> | 2016-05-25 14:59:59 +0200 |
commit | 5001036fd49cecdf1dcda1b4aed0be1b24d18c24 (patch) | |
tree | 47fd3d8ad8a60361603fd2f00dc2e26ce843ca7c /apps/files_sharing/appinfo/routes.php | |
parent | c5ade48c042fc8d5a2a5e3a3c62854e78711eee1 (diff) | |
download | nextcloud-server-5001036fd49cecdf1dcda1b4aed0be1b24d18c24.tar.gz nextcloud-server-5001036fd49cecdf1dcda1b4aed0be1b24d18c24.zip |
Move classes from outside lib/ to PSR-4
Diffstat (limited to 'apps/files_sharing/appinfo/routes.php')
-rw-r--r-- | apps/files_sharing/appinfo/routes.php | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/apps/files_sharing/appinfo/routes.php b/apps/files_sharing/appinfo/routes.php index 80632f0fedf..2e11e0e62bc 100644 --- a/apps/files_sharing/appinfo/routes.php +++ b/apps/files_sharing/appinfo/routes.php @@ -24,11 +24,10 @@ * along with this program. If not, see <http://www.gnu.org/licenses/> * */ -namespace OCA\Files_Sharing\AppInfo; use OCP\API; -$application = new Application(); +$application = new \OCA\Files_Sharing\AppInfo\Application(); $application->registerRoutes($this, [ 'resources' => [ 'ExternalShares' => ['url' => '/api/externalShares'], |