aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Service/Command/ResponseClassInterface.php
diff options
context:
space:
mode:
Diffstat (limited to 'apps/files_external/3rdparty/aws-sdk-php/Guzzle/Service/Command/ResponseClassInterface.php')
-rw-r--r--apps/files_external/3rdparty/aws-sdk-php/Guzzle/Service/Command/ResponseClassInterface.php18
1 files changed, 0 insertions, 18 deletions
diff --git a/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Service/Command/ResponseClassInterface.php b/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Service/Command/ResponseClassInterface.php
deleted file mode 100644
index 325dd08dff0..00000000000
--- a/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Service/Command/ResponseClassInterface.php
+++ /dev/null
@@ -1,18 +0,0 @@
-<?php
-
-namespace Guzzle\Service\Command;
-
-/**
- * Interface used to accept a completed OperationCommand and parse the result into a specific response type
- */
-interface ResponseClassInterface
-{
- /**
- * Create a response model object from a completed command
- *
- * @param OperationCommand $command That serialized the request
- *
- * @return self
- */
- public static function fromCommand(OperationCommand $command);
-}