We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4a81a85 commit d110a71Copy full SHA for d110a71
src/Request/AbstractRequest.php
@@ -280,8 +280,8 @@ public function configureCurl($curl)
280
curl_setopt($curl, CURLOPT_HTTPGET, true);
281
if ($this->getMethod() !== self::REQUEST_METHOD_GET) {
282
curl_setopt($curl, CURLOPT_HTTPGET, false);
283
- curl_setopt($curl, CURLOPT_CUSTOMREQUEST, $this->getMethod());
284
}
+ curl_setopt($curl, CURLOPT_CUSTOMREQUEST, $this->getMethod());
285
return $this;
286
287
@@ -391,8 +391,8 @@ protected function calculateEndpoint(): ?string
391
392
393
/**
394
- * @throws \Exception
395
* @return void
+ * @throws \Exception
396
*/
397
protected function prePerform(): void
398
{
0 commit comments