summaryrefslogtreecommitdiff
path: root/vendor/psr/http-client/src/ClientInterface.php
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/psr/http-client/src/ClientInterface.php')
-rw-r--r--vendor/psr/http-client/src/ClientInterface.php20
1 files changed, 20 insertions, 0 deletions
diff --git a/vendor/psr/http-client/src/ClientInterface.php b/vendor/psr/http-client/src/ClientInterface.php
new file mode 100644
index 000000000..ad99fd4b7
--- /dev/null
+++ b/vendor/psr/http-client/src/ClientInterface.php
@@ -0,0 +1,20 @@
+<?php
+
+namespace Psr\Http\Client;
+
+use Psr\Http\Message\RequestInterface;
+use Psr\Http\Message\ResponseInterface;
+
+interface ClientInterface
+{
+ /**
+ * Sends a PSR-7 request and returns a PSR-7 response.
+ *
+ * @param RequestInterface $request
+ *
+ * @return ResponseInterface
+ *
+ * @throws \Psr\Http\Client\ClientExceptionInterface If an error happens while processing the request.
+ */
+ public function sendRequest(RequestInterface $request): ResponseInterface;
+}