Skip to content

Commit

Permalink
fix bugs
Browse files Browse the repository at this point in the history
  • Loading branch information
SteeinSource committed Aug 8, 2017
1 parent d516940 commit b349ef1
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions src/Steein/SDK/Core/Http/Clients/GuzzleHttpClient.php
Original file line number Diff line number Diff line change
Expand Up @@ -72,13 +72,10 @@ public function send($url, $method, $body, array $headers, $timeOut)
'body' => $body,
'timeout' => $timeOut,
'connect_timeout' => 10,
'verify' => __DIR__.'/certs/DigiCertHighAssuranceEVRootCA.pem'
//'verify' => __DIR__.'/certs/DigiCertHighAssuranceEVRootCA.pem',
'verify' => false
];

if(SteeinConstants::DEBUG == true) {
$options['verify'] = false;
}

$request = new Request($method, $url, $options['headers'], $options['body']);

try
Expand Down

0 comments on commit b349ef1

Please sign in to comment.