protected PageCache::pass(Request $request, $type = self::MASTER_REQUEST, $catch = TRUE)
Sidesteps the page cache and directly forwards a request to the backend.
@returns \Symfony\Component\HttpFoundation\Response $response A response object.
Parameters
\Symfony\Component\HttpFoundation\Request $request: A request object.
int $type: The type of the request (one of HttpKernelInterface::MASTER_REQUEST or HttpKernelInterface::SUB_REQUEST)
bool $catch: Whether to catch exceptions or not
File
- core/modules/page_cache/src/StackMiddleware/PageCache.php, line 98
Class
- PageCache
- Executes the page caching before the main kernel takes over the request.
Namespace
Drupal\page_cache\StackMiddleware
Code
protected function pass(Request $request, $type = self::MASTER_REQUEST, $catch = TRUE) { return $this->httpKernel->handle($request, $type, $catch); }
Please login to continue.