protected function HttpCache::processResponseBody

1 call to HttpCache::processResponseBody()
HttpCache::forward in drupal/core/vendor/symfony/http-kernel/Symfony/Component/HttpKernel/HttpCache/HttpCache.php
Forwards the Request to the backend and returns the Response.

File

drupal/core/vendor/symfony/http-kernel/Symfony/Component/HttpKernel/HttpCache/HttpCache.php, line 614

Class

HttpCache
Cache provides HTTP caching.

Namespace

Symfony\Component\HttpKernel\HttpCache

Code

protected function processResponseBody(Request $request, Response $response) {
  if (null !== $this->esi && $this->esi
    ->needsEsiParsing($response)) {
    $this->esi
      ->process($request, $response);
  }
}