You are here

private function Store::persistRequest in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/symfony/http-kernel/HttpCache/Store.php \Symfony\Component\HttpKernel\HttpCache\Store::persistRequest()

Persists the Request HTTP headers.

Parameters

Request $request A Request instance:

Return value

array An array of HTTP headers

1 call to Store::persistRequest()
Store::write in vendor/symfony/http-kernel/HttpCache/Store.php
Writes a cache entry to the store for the given Request and Response.

File

vendor/symfony/http-kernel/HttpCache/Store.php, line 410

Class

Store
Store implements all the logic for storing cache metadata (Request and Response headers).

Namespace

Symfony\Component\HttpKernel\HttpCache

Code

private function persistRequest(Request $request) {
  return $request->headers
    ->all();
}