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

Open in your IDE?
  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.  * @experimental in 5.2
  19.  */
  20. class NotificationLoggerListener implements EventSubscriberInterfaceResetInterface
  21. {
  22.     private $events;
  23.     public function __construct()
  24.     {
  25.         $this->events = new NotificationEvents();
  26.     }
  27.     /**
  28.      * {@inheritdoc}
  29.      */
  30.     public function reset()
  31.     {
  32.         $this->events = new NotificationEvents();
  33.     }
  34.     public function onNotification(MessageEvent $event): void
  35.     {
  36.         $this->events->add($event);
  37.     }
  38.     public function getEvents(): NotificationEvents
  39.     {
  40.         return $this->events;
  41.     }
  42.     public static function getSubscribedEvents()
  43.     {
  44.         return [
  45.             MessageEvent::class => ['onNotification', -255],
  46.         ];
  47.     }
  48. }