From 5c045abda4ff78d56354b0409ceef1dfec839999 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julien=20Fastr=C3=A9?= Date: Mon, 30 Apr 2018 15:03:18 +0200 Subject: [PATCH] rename namespace for notification counter tag: - The old way: chillMain.count_notification.user - The new way: chill.count_notification.user --- .../CompilerPass/NotificationCounterCompilerPass.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DependencyInjection/CompilerPass/NotificationCounterCompilerPass.php b/DependencyInjection/CompilerPass/NotificationCounterCompilerPass.php index 065743332..941aeeb7a 100644 --- a/DependencyInjection/CompilerPass/NotificationCounterCompilerPass.php +++ b/DependencyInjection/CompilerPass/NotificationCounterCompilerPass.php @@ -38,7 +38,7 @@ class NotificationCounterCompilerPass implements CompilerPassInterface $notificationCounterDefinition = $container->getDefinition(CountNotificationUser::class); - foreach ($container->findTaggedServiceIds('chill_main.count_notification.user') as $id => $tags) { + foreach ($container->findTaggedServiceIds('chill.count_notification.user') as $id => $tags) { $notificationCounterDefinition ->addMethodCall('addNotificationCounter', [new Reference($id)]); }