Skip to content

Commit

Permalink
fix codestyle
Browse files Browse the repository at this point in the history
  • Loading branch information
karneds committed Dec 28, 2020
1 parent 15e5a78 commit e9407ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Client/Adapter/Curl.php
Expand Up @@ -388,7 +388,7 @@ public function write($method, $uri, $httpVersion = 1.1, $headers = [], $body =
curl_setopt($this->curl, $curlMethod, $curlValue);

// Set the CURLOPT_NOBODY flag for HEAD HTTP method
curl_setopt($this->curl,CURLOPT_NOBODY,$curlMethod === CURLOPT_CUSTOMREQUEST && $curlValue === 'HEAD');
curl_setopt($this->curl, CURLOPT_NOBODY, $curlMethod === CURLOPT_CUSTOMREQUEST && $curlValue === 'HEAD');

// Set the CURLINFO_HEADER_OUT flag so that we can retrieve the full request string later
curl_setopt($this->curl, CURLINFO_HEADER_OUT, true);
Expand Down

0 comments on commit e9407ce

Please sign in to comment.