public function StoreInterface::lookup in Zircon Profile 8.0
Same name and namespace in other branches
- 8 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\HttpCacheCode
public function lookup(Request $request);