diff options
Diffstat (limited to 'apps/files_trashbin/appinfo')
-rw-r--r-- | apps/files_trashbin/appinfo/routes.php | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/apps/files_trashbin/appinfo/routes.php b/apps/files_trashbin/appinfo/routes.php index 8f5530d644c..9f85e27bedc 100644 --- a/apps/files_trashbin/appinfo/routes.php +++ b/apps/files_trashbin/appinfo/routes.php @@ -1,4 +1,5 @@ <?php +declare(strict_types=1); /** * @copyright Copyright (c) 2016, ownCloud, Inc. * @copyright Copyright (c) 2016, Roeland Jago Douma <roeland@famdouma.nl> @@ -22,11 +23,7 @@ * */ -namespace OCA\Files_Trashbin\AppInfo; - -/** @var Application $application */ -$application = \OC::$server->query(Application::class); -$application->registerRoutes($this, [ +return [ 'routes' => [ [ 'name' => 'Preview#getPreview', @@ -34,4 +31,4 @@ $application->registerRoutes($this, [ 'verb' => 'GET', ], ], -]); +]; |