From: Morris Jobke Date: Mon, 17 Aug 2020 14:55:16 +0000 (+0200) Subject: Fix TagService DI name X-Git-Tag: v20.0.0beta1~57^2 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=refs%2Fpull%2F21861%2Fhead;p=nextcloud-server.git Fix TagService DI name Signed-off-by: Morris Jobke --- diff --git a/apps/files/lib/AppInfo/Application.php b/apps/files/lib/AppInfo/Application.php index 5ed126f460d..434fb482aa8 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);