You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: clients/guzzle6-adapter.rst
+2-2
Original file line number
Diff line number
Diff line change
@@ -41,7 +41,7 @@ to the client::
41
41
$guzzle = new GuzzleClient($config);
42
42
// ...
43
43
$adapter = new GuzzleAdapter($guzzle);
44
-
44
+
45
45
If you pass a Guzzle instance to the adapter, make sure to configure Guzzle to not throw exceptions on HTTP error status codes, or this adapter will violate PSR-18.
If you want even more control over your Guzzle object, you may give a Guzzle client as first argument to the adapter's
36
+
constructor::
37
+
38
+
use GuzzleHttp\Client as GuzzleClient;
39
+
use Http\Adapter\Guzzle7\Client as GuzzleAdapter;
40
+
41
+
$config = ['timeout' => 5];
42
+
// ...
43
+
$guzzle = new GuzzleClient($config);
44
+
// ...
45
+
$adapter = new GuzzleAdapter($guzzle);
46
+
47
+
If you pass a Guzzle instance to the adapter, make sure to configure Guzzle to not throw exceptions on HTTP error status codes, or this adapter will violate PSR-18.
48
+
49
+
And use it to send synchronous requests::
50
+
51
+
use GuzzleHttp\Psr7\Request;
52
+
53
+
$request = new Request('GET', 'http://httpbin.org');
54
+
55
+
// Returns a Psr\Http\Message\ResponseInterface
56
+
$response = $adapter->sendRequest($request);
57
+
58
+
Or send asynchronous ones::
59
+
60
+
use GuzzleHttp\Psr7\Request;
61
+
62
+
$request = new Request('GET', 'http://httpbin.org');
0 commit comments