You are here

public function StoreInterface::lookup in Zircon Profile 8

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

Locates a cached Response for the Request provided.

Parameters

Request $request A Request instance:

Return value

Response|null A Response instance, or null if no cache entry was found

1 method overrides StoreInterface::lookup()
Store::lookup in vendor/symfony/http-kernel/HttpCache/Store.php
Locates a cached Response for the Request provided.

File

vendor/symfony/http-kernel/HttpCache/StoreInterface.php, line 34

Class

StoreInterface
Interface implemented by HTTP cache stores.

Namespace

Symfony\Component\HttpKernel\HttpCache

Code

public function lookup(Request $request);