Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 1 addition & 5 deletions src/Curl/Curl.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
use CurlHandle;
use CurlShareHandle;

use function curl_close;
use function curl_errno;
use function curl_error;
use function curl_exec;
Expand All @@ -21,10 +20,7 @@
*/
final class Curl implements CurlInterface
{
public function close(CurlHandle $handle): void
{
curl_close($handle);
}
public function close(CurlHandle $handle): void {}

public function exec(CurlHandle $handle): ?string
{
Expand Down