Fix TagService DI name

Signed-off-by: Morris Jobke <hey@morrisjobke.de>
This commit is contained in:
Morris Jobke 2020-08-17 16:55:16 +02:00
parent 07fcf14324
commit f406f5dc73
No known key found for this signature in database
GPG Key ID: FE03C3A163FEDE68
1 changed files with 1 additions and 1 deletions

View File

@ -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);