We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents a6ac04f + 49bae15 commit 85e5d22Copy full SHA for 85e5d22
1 file changed
src/Utopia/Messaging/Adapter.php
@@ -115,8 +115,6 @@ protected function request(
115
116
$response = \curl_exec($ch);
117
118
- \curl_close($ch);
119
-
120
try {
121
$response = \json_decode($response, true, flags: JSON_THROW_ON_ERROR);
122
} catch (\JsonException) {
@@ -250,10 +248,8 @@ protected function requestMulti(
250
248
];
251
249
252
\curl_multi_remove_handle($mh, $ch);
253
254
}
255
256
- \curl_multi_close($mh);
257
\curl_share_close($sh);
258
259
return $responses;
0 commit comments