mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-07-01 06:26:15 +00:00
21 lines
500 B
PHP
21 lines
500 B
PHP
<?php
|
|
|
|
namespace Chill\MainBundle\Notification\FlagProviders;
|
|
|
|
use Symfony\Component\Translation\TranslatableMessage;
|
|
use Symfony\Contracts\Translation\TranslatableInterface;
|
|
|
|
class AccompanyingCourseNotificationFlagProvider implements NotificationFlagProviderInterface
|
|
{
|
|
|
|
public function getFlag(): string
|
|
{
|
|
return 'acc-course-notif';
|
|
}
|
|
|
|
public function getLabel(): TranslatableInterface
|
|
{
|
|
return new TranslatableMessage('notification.flags.acc-course');
|
|
}
|
|
}
|