Skip to content
This repository was archived by the owner on Jan 6, 2024. It is now read-only.

Commit f29c2b5

Browse files
committed
Keep default options of zend http
1 parent 5459e34 commit f29c2b5

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

src/Client.php

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,7 @@ class Client implements HttpClient
2323

2424
public function __construct(ZendClient $client = null, ResponseFactory $responseFactory = null)
2525
{
26-
$this->client = $client ?: new ZendClient(null, [
27-
'maxredirects' => 0,
28-
'storeresponse' => false,
29-
]);
26+
$this->client = $client ?: new ZendClient();
3027
$this->responseFactory = $responseFactory ?: MessageFactoryDiscovery::find();
3128
}
3229

0 commit comments

Comments
 (0)