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.
2 parents 763f6b4 + 844d968 commit 95da0d4Copy full SHA for 95da0d4
src/CurlHttpClient.php
@@ -67,12 +67,10 @@ public function request(
67
if (curl_errno($curlHandle) > 0) {
68
$error = curl_error($curlHandle);
69
$errorNo = curl_errno($curlHandle);
70
- curl_close($curlHandle);
71
throw new TwitterOAuthException($error, $errorNo);
72
}
73
74
$httpCode = curl_getinfo($curlHandle, CURLINFO_HTTP_CODE);
75
76
77
$parts = explode("\r\n\r\n", $response);
78
$responseBody = array_pop($parts);
0 commit comments