Commit a15cfcd 1 parent a34b6c5 commit a15cfcd Copy full SHA for a15cfcd
File tree 2 files changed +5
-5
lines changed
2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -4,11 +4,11 @@ PSR Http Client
4
4
This repository holds all interfaces/classes/traits related to
5
5
[ PSR-18] ( http://www.php-fig.org/psr/psr-18/ ) .
6
6
7
- Note that this is not a HTTP client implementation of its own. It is merely an
8
- interface that describes a HTTP client. See
7
+ Note that this is not an HTTP client implementation of its own. It is merely an
8
+ interface that describes an HTTP client. See
9
9
[ the specification] ( https://github.com/php-fig/fig-standards/blob/master/proposed/http-client/http-client.md )
10
10
for more details.
11
11
12
12
You can find implementations of the specification by looking for packages providing
13
13
the [ psr/simple-cache-implementation] ( https://packagist.org/providers/psr/http-client-implementation )
14
- virtual package.
14
+ virtual package.
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ interface ClientInterface
10
10
/**
11
11
* Sends a PSR-7 request and returns a PSR-7 response.
12
12
*
13
- * Every technically correct HTTP response MUST be returned as is, even if it represents a HTTP
13
+ * Every technically correct HTTP response MUST be returned as is, even if it represents an HTTP
14
14
* error response or a redirect instruction. The only special case is 1xx responses, which MUST
15
15
* be assembled in the HTTP client.
16
16
*
@@ -28,4 +28,4 @@ interface ClientInterface
28
28
* @throws \Psr\Http\Client\Exception If an error happens during processing the request.
29
29
*/
30
30
public function sendRequest (RequestInterface $ request ): ResponseInterface ;
31
- }
31
+ }
You can’t perform that action at this time.
0 commit comments