<?php
namespace MentalSchool\AppBundle\Listener;
use Symfony\Component\HttpKernel\HttpKernelInterface;
use Symfony\Component\HttpKernel\Event\GetResponseEvent;
use Symfony\Component\DependencyInjection\ContainerInterface;
use Symfony\Component\Security\Core\Authorization\AuthorizationCheckerInterface;
class RequestListener
{
protected $kernel;
protected $container;
public function __construct($kernel, ContainerInterface $containerInterface)
{
$this->kernel = $kernel;
$this->container = $containerInterface;
}
public function onKernelRequest(GetResponseEvent $event)
{
}
}