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