Updated docs

This commit is contained in:
Walter Dal Mut
2014-09-13 08:40:30 +02:00
parent 930593811b
commit 0244b151c0
+5 -2
View File
@@ -42,9 +42,12 @@ $client->setAdapter($adapter);
Actually Guzzle is used as HTTP client library
```
```php
<?php
$guzzle = new \GuzzleHttp\Client();
$options = new Options();
$adapter = new GuzzleAdapter($options);
$adapter = new GuzzleAdapter($guzzle, $options);
$client = new Client();
$client->setAdapter($adapter);