Skip to content

Commit 7a70eec

Browse files
author
Martin Brecht-Precht
committed
Updated readme.
1 parent 0b52519 commit 7a70eec

File tree

1 file changed

+20
-3
lines changed

1 file changed

+20
-3
lines changed

README.md

+20-3
Original file line numberDiff line numberDiff line change
@@ -129,6 +129,8 @@ The same mechanic is offered to perform `PUT` and `PATCH` requests wich all are
129129

130130
The following example shows the usage with a more detailed configuration.
131131

132+
#### Configuring a Transport instance
133+
132134
```{php}
133135
use BasicHttpClient\Request\Authentication\BasicAuthentication;
134136
use BasicHttpClient\Request\Message\Body\Body;
@@ -148,7 +150,11 @@ $transport
148150
->setFollowRedirects(true)
149151
->setMaxRedirects(10)
150152
->setVerifyPeer(true);
153+
```
151154

155+
#### Configuring a Message instance with Body
156+
157+
```{php}
152158
// Configuring a message Body instance
153159
$messageBody = new Body();
154160
$messageBody->setBodyText(
@@ -172,19 +178,30 @@ $message
172178
->addHeader(new Header('Runscope-Bucket-Auth', array('7a64dde7-74d5-4eed-b170-a2ab406eff08')))
173179
->addCookie(new Cookie('PHPSESSID', '<MY_SESSION_ID>'))
174180
->setBody($messageBody);
181+
```
182+
183+
##### Message and request Header instances
184+
185+
**Please note, that headers have some unusual behaviours.** Header names have an uniform way of nomenclature so the following three getter calls would have the same result.
175186

176-
// Please note, that headers have some unusual behaviours.
177-
// Header names have an uniform way of nomenclature so the three getter calls would have the same result.
187+
```{php}
178188
$header1 = $message->getHeaderByName('Content-Type');
179189
$header2 = $message->getHeaderByName('content-type');
180190
$header3 = $message->getHeaderByName('CONTENT-Type');
191+
```
181192

182-
// To allow multiple request headers using the same name, the method `addAdditionalHeader` provides such a logic.
193+
To allow multiple request headers using the same name, the method `addAdditionalHeader` provides such a logic.
194+
195+
```{php}
183196
// Add or replace a request header
184197
$message->addHeader(new Header('Custom-Header', array('CustomHeaderValue')));
185198
// Add a request header and keep the existing one untouched
186199
$message->addAdditionalHeader(new Header('Custom-Header', array('AnotherCustomHeaderValue')));
200+
```
201+
202+
#### Configuring and submitting a Request instance
187203

204+
```{php}
188205
// Configuring and performing a Request
189206
$request = new Request();
190207
$response = $request

0 commit comments

Comments
 (0)