<?php
namespace App\EventListener;
use Mgilet\NotificationBundle\Event\NotificationEvent;
use Psr\Log\LoggerInterface;
class NotificationEventListener
{
private LoggerInterface $logger;
public function __construct(LoggerInterface $logger)
{
$this->logger = $logger;
}
public function onNotification(NotificationEvent $event, $a)
{
}
}