Jarves\EventListener\LatencyMonitorSubscriber::onRequestPre PHP Method

onRequestPre() public method

public onRequestPre ( GetResponseEvent $event )
$event Symfony\Component\HttpKernel\Event\GetResponseEvent
    public function onRequestPre(GetResponseEvent $event)
    {
        if ($event->getRequestType() !== HttpKernelInterface::MASTER_REQUEST) {
            return;
        }
        $this->start = microtime(true);
    }