PATH:
home
/
fengshp
/
www
/
wp-content
/
plugins
/
updraftplus
/
vendor
/
guzzle
/
guzzle
/
src
/
Guzzle
/
Plugin
/
Cache
<?php namespace Guzzle\Plugin\Cache; use Guzzle\Http\Message\RequestInterface; use Guzzle\Http\Message\Response; /** * Cache revalidation interface */ interface RevalidationInterface { /** * Performs a cache revalidation * * @param RequestInterface $request Request to revalidate * @param Response $response Response that was received * * @return bool Returns true if the request can be cached */ public function revalidate(RequestInterface $request, Response $response); /** * Returns true if the response should be revalidated * * @param RequestInterface $request Request to check * @param Response $response Response to check * * @return bool */ public function shouldRevalidate(RequestInterface $request, Response $response); }
[+]
..
[-] CanCacheStrategyInterface.php
[edit]
[-] DefaultCacheKeyProvider.php
[edit]
[-] DefaultRevalidation.php
[edit]
[-] CacheStorageInterface.php
[edit]
[-] SkipRevalidation.php
[edit]
[-] DefaultCacheStorage.php
[edit]
[-] composer.json
[edit]
[-] CacheKeyProviderInterface.php
[edit]
[-] DenyRevalidation.php
[edit]
[-] CallbackCanCacheStrategy.php
[edit]
[-] RevalidationInterface.php
[edit]
[-] DefaultCanCacheStrategy.php
[edit]
[-] CachePlugin.php
[edit]