diff options
-rw-r--r-- | apps/testing/appinfo/app.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/testing/appinfo/app.php b/apps/testing/appinfo/app.php index 48d8da8c20b..428899df691 100644 --- a/apps/testing/appinfo/app.php +++ b/apps/testing/appinfo/app.php @@ -1,4 +1,5 @@ <?php +declare(strict_types=1); /** * @copyright Copyright (c) 2016, ownCloud GmbH. * @@ -21,4 +22,4 @@ * */ -$app = new \OCA\Testing\AppInfo\Application(); +$app = \OC::$server->query(\OCA\Testing\AppInfo\Application::class); |