Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'apps/testing/appinfo/app.php')
-rw-r--r--apps/testing/appinfo/app.php4
1 files changed, 3 insertions, 1 deletions
diff --git a/apps/testing/appinfo/app.php b/apps/testing/appinfo/app.php
index 48d8da8c20b..e588ce47433 100644
--- a/apps/testing/appinfo/app.php
+++ b/apps/testing/appinfo/app.php
@@ -1,4 +1,6 @@
<?php
+
+declare(strict_types=1);
/**
* @copyright Copyright (c) 2016, ownCloud GmbH.
*
@@ -21,4 +23,4 @@
*
*/
-$app = new \OCA\Testing\AppInfo\Application();
+$app = \OC::$server->query(\OCA\Testing\AppInfo\Application::class);