We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d5408a4 commit dec7fc9Copy full SHA for dec7fc9
src/PaymentClient.php
@@ -59,7 +59,11 @@ public function __construct(array $context = null)
59
}else{
60
$this->context = new ClientContext();
61
}
62
- $this->httpClient = ClientFactory::buildCurlClient();
+ $this->httpClient = ClientFactory::buildCurlClient(
63
+ isset($context['connection_time_out']) ? $context['connection_time_out'] : 10,
64
+ isset($context['request_time_out']) ? $context['request_time_out'] : 100,
65
+ isset($context['is_verify']) ? $context['is_verify'] : false
66
+ );
67
68
$this->interceptors = array();
69
0 commit comments