Skip to content

Commit 029f792

Browse files
committed
PHP 8.5 Port
Remove curl_close, which is a NoOp in PHP 8.0+
1 parent 49c2703 commit 029f792

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/ReCaptcha/RequestMethod/Curl.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,6 @@ public function exec($ch): mixed
7474
*/
7575
public function close($ch): void
7676
{
77-
curl_close($ch);
77+
// curl_close($ch); // curl_close is a noop in PHP 8.0+
7878
}
7979
}

0 commit comments

Comments
 (0)