Remove person notification flag provider - non existant

This commit is contained in:
Julie Lenaerts 2025-06-18 15:24:39 +02:00
parent cf391d60fe
commit c2782be56a

View File

@ -1,20 +0,0 @@
<?php
namespace Chill\MainBundle\Notification\FlagProviders;
use Symfony\Component\Translation\TranslatableMessage;
use Symfony\Contracts\Translation\TranslatableInterface;
class PersonNotificationFlagProvider implements NotificationFlagProviderInterface
{
public function getFlag(): string
{
return 'person-notif';
}
public function getLabel(): TranslatableInterface
{
return new TranslatableMessage('notification.flags.person');
}
}