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:
authorRobin Appelman <robin@icewind.nl>2019-11-04 21:25:00 +0300
committerRobin Appelman <robin@icewind.nl>2019-11-04 21:51:37 +0300
commitef2fb51065aabb90e8e4234d84a78f4e047f7d1c (patch)
treea4a0152950139fb23255f68d7aaf6afd8a3b730f /apps/twofactor_backupcodes
parent5ca27085fcb01db920326ea9ad892cc9a49253ab (diff)
remove missed manual Application instance constructions
Signed-off-by: Robin Appelman <robin@icewind.nl>
Diffstat (limited to 'apps/twofactor_backupcodes')
-rw-r--r--apps/twofactor_backupcodes/appinfo/app.php4
1 files changed, 3 insertions, 1 deletions
diff --git a/apps/twofactor_backupcodes/appinfo/app.php b/apps/twofactor_backupcodes/appinfo/app.php
index 34b4866af2d..f67e89d23b7 100644
--- a/apps/twofactor_backupcodes/appinfo/app.php
+++ b/apps/twofactor_backupcodes/appinfo/app.php
@@ -21,5 +21,7 @@
*
*/
-$app = new \OCA\TwoFactorBackupCodes\AppInfo\Application();
+use OCA\TwoFactorBackupCodes\AppInfo\Application;
+
+$app = \OC::$server->query(Application::class);
$app->register();