src/EventListener/NotificationEventListener.php line 19

Open in your IDE?
  1. <?php
  2. namespace App\EventListener;
  3. use Mgilet\NotificationBundle\Event\NotificationEvent;
  4. use Psr\Log\LoggerInterface;
  5. class NotificationEventListener
  6. {
  7.     private LoggerInterface $logger;
  8.     public function __construct(LoggerInterface $logger)
  9.     {
  10.         $this->logger $logger;
  11.     }
  12.     public function onNotification(NotificationEvent $event$a)
  13.     {
  14.     }
  15. }