diff --git a/Gateway/Http/Client/TransactionCancel.php b/Gateway/Http/Client/TransactionCancel.php index b0d8a5c39..49ae63440 100644 --- a/Gateway/Http/Client/TransactionCancel.php +++ b/Gateway/Http/Client/TransactionCancel.php @@ -46,7 +46,7 @@ public function placeRequest(TransferInterface $transferObject): array $headers['idempotencyExtraData'] ?? null ); $requestOptions['idempotencyKey'] = $idempotencyKey; - $requestOptions['headers'] = $this->adyenHelper->buildRequestHeaders();; + $requestOptions['headers'] = $this->adyenHelper->buildRequestHeaders(); $this->adyenHelper->logRequest($requests, Client::API_CHECKOUT_VERSION, '/cancels'); try { $responses = $service->cancels($requests, $requestOptions); diff --git a/Gateway/Http/Client/TransactionCapture.php b/Gateway/Http/Client/TransactionCapture.php index df2a5aa2d..fcbea1a72 100644 --- a/Gateway/Http/Client/TransactionCapture.php +++ b/Gateway/Http/Client/TransactionCapture.php @@ -57,7 +57,7 @@ public function placeRequest(TransferInterface $transferObject): array ); $requestOptions['idempotencyKey'] = $idempotencyKey; - $requestOptions['headers'] = $this->adyenHelper->buildRequestHeaders();; + $requestOptions['headers'] = $this->adyenHelper->buildRequestHeaders(); if (array_key_exists(self::MULTIPLE_AUTHORIZATIONS, $request)) { return $this->placeMultipleCaptureRequests($service, $request, $requestOptions); diff --git a/Gateway/Http/Client/TransactionDonate.php b/Gateway/Http/Client/TransactionDonate.php index db4fc2c89..7475993fc 100644 --- a/Gateway/Http/Client/TransactionDonate.php +++ b/Gateway/Http/Client/TransactionDonate.php @@ -53,7 +53,7 @@ public function placeRequest(TransferInterface $transferObject) ); $requestOptions['idempotencyKey'] = $idempotencyKey; - $requestOptions['headers'] = $this->adyenHelper->buildRequestHeaders();; + $requestOptions['headers'] = $this->adyenHelper->buildRequestHeaders(); $this->adyenHelper->logRequest($request, Client::API_CHECKOUT_VERSION, 'donations'); try { diff --git a/Gateway/Http/Client/TransactionPaymentLinks.php b/Gateway/Http/Client/TransactionPaymentLinks.php index 92228ba92..e3e71d13a 100644 --- a/Gateway/Http/Client/TransactionPaymentLinks.php +++ b/Gateway/Http/Client/TransactionPaymentLinks.php @@ -52,7 +52,7 @@ public function placeRequest(TransferInterface $transferObject): array ); $requestOptions['idempotencyKey'] = $idempotencyKey; - $requestOptions['headers'] = $this->adyenHelper->buildRequestHeaders();; + $requestOptions['headers'] = $this->adyenHelper->buildRequestHeaders(); $this->adyenHelper->logRequest($request, Client::API_CHECKOUT_VERSION, '/paymentLinks'); try {