aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Plugin/Cache/CacheStorageInterface.php
diff options
context:
space:
mode:
Diffstat (limited to 'apps/files_external/3rdparty/aws-sdk-php/Guzzle/Plugin/Cache/CacheStorageInterface.php')
-rw-r--r--apps/files_external/3rdparty/aws-sdk-php/Guzzle/Plugin/Cache/CacheStorageInterface.php43
1 files changed, 0 insertions, 43 deletions
diff --git a/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Plugin/Cache/CacheStorageInterface.php b/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Plugin/Cache/CacheStorageInterface.php
deleted file mode 100644
index f3d9154584c..00000000000
--- a/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Plugin/Cache/CacheStorageInterface.php
+++ /dev/null
@@ -1,43 +0,0 @@
-<?php
-
-namespace Guzzle\Plugin\Cache;
-
-use Guzzle\Http\Message\RequestInterface;
-use Guzzle\Http\Message\Response;
-
-/**
- * Interface used to cache HTTP requests
- */
-interface CacheStorageInterface
-{
- /**
- * Get a Response from the cache for a request
- *
- * @param RequestInterface $request
- *
- * @return null|Response
- */
- public function fetch(RequestInterface $request);
-
- /**
- * Cache an HTTP request
- *
- * @param RequestInterface $request Request being cached
- * @param Response $response Response to cache
- */
- public function cache(RequestInterface $request, Response $response);
-
- /**
- * Deletes cache entries that match a request
- *
- * @param RequestInterface $request Request to delete from cache
- */
- public function delete(RequestInterface $request);
-
- /**
- * Purge all cache entries for a given URL
- *
- * @param string $url
- */
- public function purge($url);
-}