@@ -128,7 +128,7 @@ Decorators
128
128
----------
129
129
130
130
It may be useful to extend the ` Request ` and ` Response ` objects in your
131
- application, if you for example would like them to carry a bit more
131
+ application, if you, for example, would like them to carry a bit more
132
132
information about the current request.
133
133
134
134
For instance, you may want to add an ` isLoggedIn ` method to the Request
@@ -144,7 +144,7 @@ Simply extending Request and Response may pose some problems:
144
144
` Response ` instances in your library or application, you make it harder to
145
145
work with other applications which also use ` sabre/http ` .
146
146
147
- In short: it would be bad design. Instead, it's recommended to use the
147
+ In short, it would be bad design. Instead, it's recommended to use the
148
148
[ decorator pattern] [ 6 ] to add new behavior where you need it. ` sabre/http `
149
149
provides helper classes to quickly do this.
150
150
@@ -177,7 +177,7 @@ all we need to do is:
177
177
$request = new MyRequest($request);
178
178
```
179
179
180
- And that's it, we now have an ` isLoggedIn ` method, without having to mess
180
+ And that's it; we now have an ` isLoggedIn ` method, without having to mess
181
181
with the core instances.
182
182
183
183
@@ -205,14 +205,14 @@ $response = $client->send($request);
205
205
echo $response->getBodyAsString();
206
206
```
207
207
208
- The client emits 3 event using [ ` sabre/event ` ] [ 5 ] . ` beforeRequest ` ,
208
+ The client emits 3 events using [ ` sabre/event ` ] [ 5 ] . ` beforeRequest ` ,
209
209
` afterRequest ` and ` error ` .
210
210
211
211
``` php
212
212
$client = new HTTP\Client();
213
213
$client->on('beforeRequest', function($request) {
214
214
215
- // You could use beforeRequest to for example inject a few extra headers.
215
+ // You could use beforeRequest to, for example, inject a few extra headers
216
216
// into the Request object.
217
217
218
218
});
@@ -249,7 +249,7 @@ $client->on('error:401', function($request, $response, &$retry, $retryCount) {
249
249
### Asynchronous requests
250
250
251
251
The ` Client ` also supports doing asynchronous requests. This is especially handy
252
- if you need to perform a number of requests, that are allowed to be executed
252
+ if you need to perform a number of requests that are allowed to be executed
253
253
in parallel.
254
254
255
255
The underlying system for this is simply [ cURL's multi request handler] [ 8 ] ,
@@ -326,8 +326,8 @@ $response = $client->send($subRequest);
326
326
Sapi::sendResponse($response);
327
327
```
328
328
329
- The Request and Response API's
330
- ------------------------------
329
+ The Request and Response APIs
330
+ -----------------------------
331
331
332
332
### Request
333
333
@@ -449,8 +449,8 @@ function getPostData();
449
449
*
450
450
* This is equivalent to PHP's $_POST superglobal.
451
451
*
452
- * This would not have been needed, if POST data was accessible as
453
- * php://input, but unfortunately we need to special case it.
452
+ * This would not have been needed if POST data was accessible as
453
+ * php://input, but unfortunately we need to special- case it.
454
454
*
455
455
* @param array $postData
456
456
* @return void
@@ -608,7 +608,7 @@ function getStatus();
608
608
* Sets the HTTP status code.
609
609
*
610
610
* This can be either the full HTTP status code with human-readable string,
611
- * for example: "403 I can't let you do that, Dave".
611
+ * for example, "403 I can't let you do that, Dave".
612
612
*
613
613
* Or just the code, in which case the appropriate default message will be
614
614
* added.
0 commit comments