Nelmio\SecurityBundle\Session\CookieSessionHandler::onKernelRequest PHP Method

onKernelRequest() public method

public onKernelRequest ( GetResponseEvent $e )
$e Symfony\Component\HttpKernel\Event\GetResponseEvent
    public function onKernelRequest(GetResponseEvent $e)
    {
        if (HttpKernelInterface::MASTER_REQUEST !== $e->getRequestType()) {
            return;
        }
        if ($this->logger) {
            $this->logger->debug('CookieSessionHandler::onKernelRequest - Receiving the Request object');
        }
        $this->request = $e->getRequest();
    }