remove unused code and dum

This commit is contained in:
Julien Fastré 2018-10-18 21:54:04 +02:00
parent cdaf3af2d4
commit 4f78b8fb54

View File

@ -24,8 +24,6 @@ namespace Chill\PersonBundle\Privacy;
use Psr\Log\LoggerInterface;
use Symfony\Component\EventDispatcher\EventSubscriberInterface;
use Symfony\Component\HttpKernel\Event\GetResponseForExceptionEvent;
use Symfony\Component\HttpKernel\KernelEvents;
use Symfony\Component\Security\Core\Authentication\Token\Storage\TokenStorageInterface;
class PrivacyEventSubscriber implements EventSubscriberInterface
@ -80,22 +78,5 @@ class PrivacyEventSubscriber implements EventSubscriberInterface
"[Privacy Event] A Person Folder has been viewed",
array_merge($involved, $event->getArgs())
);
dump($event);
}
public function processException(GetResponseForExceptionEvent $event)
{
// ...
}
public function logException(GetResponseForExceptionEvent $event)
{
// ...
}
public function notifyException(GetResponseForExceptionEvent $event)
{
// ...
}
}