From 8e6547ff47aae2e4f615a5dcea1e5e4911b1dc9f Mon Sep 17 00:00:00 2001 From: freekmurze Date: Mon, 20 Nov 2023 08:20:15 +0000 Subject: [PATCH] Fix styling --- src/Client.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Client.php b/src/Client.php index 9d9e3f3..d7ad4b1 100644 --- a/src/Client.php +++ b/src/Client.php @@ -144,7 +144,7 @@ protected function getCurlHandleForUrl(string $method, string $url) protected function getCurlHandle(string $method, string $fullUrl) { - if (!$this->curlHandle) { + if (! $this->curlHandle) { $this->curlHandle = curl_init(); }