Symfony\Component\HttpKernel\HttpCache\HttpCache::pass PHP Method

pass() protected method

Forwards the Request to the backend without storing the Response in the cache.
protected pass ( Request $request, boolean $catch = false ) : Response
$request Symfony\Component\HttpFoundation\Request A Request instance
$catch boolean Whether to process exceptions
return Symfony\Component\HttpFoundation\Response A Response instance
    protected function pass(Request $request, $catch = false)
    {
        $this->record($request, 'pass');
        return $this->forward($request, $catch);
    }