You are here

public function PageCache::__construct in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/page_cache/src/StackMiddleware/PageCache.php \Drupal\page_cache\StackMiddleware\PageCache::__construct()

Constructs a PageCache object.

Parameters

\Symfony\Component\HttpKernel\HttpKernelInterface $http_kernel: The decorated kernel.

\Drupal\Core\Cache\CacheBackendInterface $cache: The cache bin.

\Drupal\Core\PageCache\RequestPolicyInterface $request_policy: A policy rule determining the cacheability of a request.

\Drupal\Core\PageCache\ResponsePolicyInterface $response_policy: A policy rule determining the cacheability of the response.

File

core/modules/page_cache/src/StackMiddleware/PageCache.php, line 69

Class

PageCache
Executes the page caching before the main kernel takes over the request.

Namespace

Drupal\page_cache\StackMiddleware

Code

public function __construct(HttpKernelInterface $http_kernel, CacheBackendInterface $cache, RequestPolicyInterface $request_policy, ResponsePolicyInterface $response_policy) {
  $this->httpKernel = $http_kernel;
  $this->cache = $cache;
  $this->requestPolicy = $request_policy;
  $this->responsePolicy = $response_policy;
}