rename namespace for notification counter tag:

- The old way: chillMain.count_notification.user
- The new way: chill.count_notification.user
This commit is contained in:
Julien Fastré 2018-04-30 15:03:18 +02:00
parent 9b4bf04c9c
commit 5c045abda4

View File

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