summaryrefslogtreecommitdiff
path: root/vendor/aws/aws-sdk-php/src/ResponseContainerInterface.php
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/aws/aws-sdk-php/src/ResponseContainerInterface.php')
-rw-r--r--vendor/aws/aws-sdk-php/src/ResponseContainerInterface.php15
1 files changed, 15 insertions, 0 deletions
diff --git a/vendor/aws/aws-sdk-php/src/ResponseContainerInterface.php b/vendor/aws/aws-sdk-php/src/ResponseContainerInterface.php
new file mode 100644
index 0000000..d26921b
--- /dev/null
+++ b/vendor/aws/aws-sdk-php/src/ResponseContainerInterface.php
@@ -0,0 +1,15 @@
+<?php
+
+namespace Aws;
+
+use Psr\Http\Message\ResponseInterface;
+
+interface ResponseContainerInterface
+{
+ /**
+ * Get the received HTTP response if any.
+ *
+ * @return ResponseInterface|null
+ */
+ public function getResponse();
+} \ No newline at end of file