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:
authorChristoph Wurst <christoph@winzerhof-wurst.at>2019-11-19 16:36:27 +0300
committerRoeland Jago Douma <roeland@famdouma.nl>2019-11-25 10:42:16 +0300
commit97385cef334a1bfb3ace32007349af3ca1094c08 (patch)
treeacecc50d894457347ef234b8f442b930a0225d6a /apps/admin_audit
parent3c17d1b5e2ebb737f7d6d05a73cef37efffcdd3d (diff)
Remove some more direct app instance creations
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Diffstat (limited to 'apps/admin_audit')
-rw-r--r--apps/admin_audit/appinfo/app.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/admin_audit/appinfo/app.php b/apps/admin_audit/appinfo/app.php
index 5cee5c3db70..85e19011e08 100644
--- a/apps/admin_audit/appinfo/app.php
+++ b/apps/admin_audit/appinfo/app.php
@@ -24,5 +24,5 @@ declare(strict_types=1);
*
*/
-$app = new \OCA\AdminAudit\AppInfo\Application();
+$app = \OC::$server->query(\OCA\AdminAudit\AppInfo\Application::class);
$app->register();