summaryrefslogtreecommitdiffstats
path: root/library/vendor/iplx/Http/ClientInterface.php
diff options
context:
space:
mode:
Diffstat (limited to 'library/vendor/iplx/Http/ClientInterface.php')
-rw-r--r--library/vendor/iplx/Http/ClientInterface.php22
1 files changed, 0 insertions, 22 deletions
diff --git a/library/vendor/iplx/Http/ClientInterface.php b/library/vendor/iplx/Http/ClientInterface.php
deleted file mode 100644
index e7765a7..0000000
--- a/library/vendor/iplx/Http/ClientInterface.php
+++ /dev/null
@@ -1,22 +0,0 @@
-<?php
-
-namespace iplx\Http;
-
-use Psr\Http\Message\RequestInterface;
-use Psr\Http\Message\ResponseInterface;
-
-/**
- * Interface for HTTP clients which send HTTP requests
- */
-interface ClientInterface
-{
- /**
- * Send a HTTP request
- *
- * @param RequestInterface $request Request to send
- * @param array $options Request options
- *
- * @return ResponseInterface The response
- */
- public function send(RequestInterface $request, array $options = []);
-}