From f406f5dc737c399f21ccee2383a928fc0df37fae Mon Sep 17 00:00:00 2001 From: Morris Jobke Date: Mon, 17 Aug 2020 16:55:16 +0200 Subject: [PATCH] Fix TagService DI name Signed-off-by: Morris Jobke --- apps/files/lib/AppInfo/Application.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/files/lib/AppInfo/Application.php b/apps/files/lib/AppInfo/Application.php index 5ed126f460..434fb482aa 100644 --- a/apps/files/lib/AppInfo/Application.php +++ b/apps/files/lib/AppInfo/Application.php @@ -96,7 +96,7 @@ class Application extends App implements IBootstrap { /** * Services */ - $context->registerService('TagService', function (ContainerInterface $c) { + $context->registerService(TagService::class, function (ContainerInterface $c) { /** @var IServerContainer $server */ $server = $c->get(IServerContainer::class);