aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Plugin/Cache/CanCacheStrategyInterface.php
diff options
context:
space:
mode:
Diffstat (limited to 'apps/files_external/3rdparty/aws-sdk-php/Guzzle/Plugin/Cache/CanCacheStrategyInterface.php')
-rw-r--r--apps/files_external/3rdparty/aws-sdk-php/Guzzle/Plugin/Cache/CanCacheStrategyInterface.php30
1 files changed, 0 insertions, 30 deletions
diff --git a/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Plugin/Cache/CanCacheStrategyInterface.php b/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Plugin/Cache/CanCacheStrategyInterface.php
deleted file mode 100644
index 6e01a8e74a7..00000000000
--- a/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Plugin/Cache/CanCacheStrategyInterface.php
+++ /dev/null
@@ -1,30 +0,0 @@
-<?php
-
-namespace Guzzle\Plugin\Cache;
-
-use Guzzle\Http\Message\RequestInterface;
-use Guzzle\Http\Message\Response;
-
-/**
- * Strategy used to determine if a request can be cached
- */
-interface CanCacheStrategyInterface
-{
- /**
- * Determine if a request can be cached
- *
- * @param RequestInterface $request Request to determine
- *
- * @return bool
- */
- public function canCacheRequest(RequestInterface $request);
-
- /**
- * Determine if a response can be cached
- *
- * @param Response $response Response to determine
- *
- * @return bool
- */
- public function canCacheResponse(Response $response);
-}