vendor/symfony/notifier/EventListener/NotificationLoggerListener.php line 36

  1. <?php
  2. /*
  3.  * This file is part of the Symfony package.
  4.  *
  5.  * (c) Fabien Potencier <fabien@symfony.com>
  6.  *
  7.  * For the full copyright and license information, please view the LICENSE
  8.  * file that was distributed with this source code.
  9.  */
  10. namespace Symfony\Component\Notifier\EventListener;
  11. use Symfony\Component\EventDispatcher\EventSubscriberInterface;
  12. use Symfony\Component\Notifier\Event\MessageEvent;
  13. use Symfony\Component\Notifier\Event\NotificationEvents;
  14. use Symfony\Contracts\Service\ResetInterface;
  15. /**
  16.  * @author Fabien Potencier <fabien@symfony.com>
  17.  */
  18. class NotificationLoggerListener implements EventSubscriberInterfaceResetInterface
  19. {
  20.     private NotificationEvents $events;
  21.     public function __construct()
  22.     {
  23.         $this->events = new NotificationEvents();
  24.     }
  25.     public function reset()
  26.     {
  27.         $this->events = new NotificationEvents();
  28.     }
  29.     public function onNotification(MessageEvent $event): void
  30.     {
  31.         $this->events->add($event);
  32.     }
  33.     public function getEvents(): NotificationEvents
  34.     {
  35.         return $this->events;
  36.     }
  37.     public static function getSubscribedEvents(): array
  38.     {
  39.         return [
  40.             MessageEvent::class => ['onNotification', -255],
  41.         ];
  42.     }
  43. }