From 4c4c1a648ebbc6dc95ec0e3a643da49fb4590ebb Mon Sep 17 00:00:00 2001 From: Daniel Dudzic Date: Mon, 10 Jun 2024 11:29:08 +0200 Subject: [PATCH 1/2] Add AUD, CAD, EUR, GBP, and JPY as supported Fastlane currencies (3239) --- modules/ppcp-axo/services.php | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/modules/ppcp-axo/services.php b/modules/ppcp-axo/services.php index 0020169a7..2aa8c3afe 100644 --- a/modules/ppcp-axo/services.php +++ b/modules/ppcp-axo/services.php @@ -148,7 +148,12 @@ return array( 'woocommerce_paypal_payments_axo_supported_country_currency_matrix', array( 'US' => array( - 'USD', + 'AUD', + 'CAD', + 'EUR', + 'GBP', + 'JPY', + 'USD' ), ) ); From d82a9bca29673c6966d356cfa0e7214372a4d5f5 Mon Sep 17 00:00:00 2001 From: Daniel Dudzic Date: Mon, 10 Jun 2024 11:41:57 +0200 Subject: [PATCH 2/2] Fix PHPCS error --- modules/ppcp-axo/services.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/ppcp-axo/services.php b/modules/ppcp-axo/services.php index 2aa8c3afe..9d4e6d5fe 100644 --- a/modules/ppcp-axo/services.php +++ b/modules/ppcp-axo/services.php @@ -153,7 +153,7 @@ return array( 'EUR', 'GBP', 'JPY', - 'USD' + 'USD', ), ) );