Skip to content

Commit 2e43c1f

Browse files
authored
Fixed issue when $paymentMethodTypes was null + formatting
1 parent 2b92338 commit 2e43c1f

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

src/Client/PaymentRequest.php

+6-2
Original file line numberDiff line numberDiff line change
@@ -28,18 +28,22 @@ public function createPaymentRequest(
2828
$headers = $this->getRequestHeaders();
2929
$method = 'POST';
3030

31+
if(is_array($paymentMethodTypes)) {
32+
$paymentMethodTypes = implode(',', $paymentMethodTypes);
33+
}
34+
3135
$body = http_build_query([
3236
'Amount' => $amount->__toString(),
3337
'Currency' => $currency,
3438
'OriginUrl' => $originUrl,
3539
'CallbackUrl' => $callbackUrl,
36-
'PaymentMethodTypes' => implode(',', $paymentMethodTypes),
40+
'PaymentMethodTypes' => $paymentMethodTypes,
3741
'OrderID' => $orderId,
3842
'CardCreateToken' => $createToken && $customerEmailAddress != "" ? 'true' : 'false',
3943
'CustomerID' => $customerId ?? '',
4044
'CardAuthorizeOnly' => $cardAuthorizeOnly ? 'true' : 'false',
4145
'CustomerEmailAddress' => $customerEmailAddress,
42-
'IgnoreAddressVerification' => $showBillingAddressSameAsShippingAddressCheckbox ? 'true' : 'false'
46+
'IgnoreAddressVerification' => $showBillingAddressSameAsShippingAddressCheckbox ? 'false' : 'true'
4347
]);
4448

4549
$response = $this->getHttpClient()->request($method, $url, $headers, $body);

0 commit comments

Comments
 (0)