Skip to content

Commit 0c9abd0

Browse files
Fix curl get
1 parent b6fa55f commit 0c9abd0

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/Http/Client.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ public function makeCurlRequest(string $httpVerb, string $fullUrl, array $header
148148
break;
149149

150150
case 'get':
151-
curl_setopt($curlHandle, CURLOPT_URL, $fullUrl.'?'.http_build_query($arguments));
151+
curl_setopt($curlHandle, CURLOPT_URL, $fullUrl.'&'.http_build_query($arguments));
152152

153153
break;
154154

0 commit comments

Comments
 (0)