phpcs fix

This commit is contained in:
George Burduli 2024-07-29 13:29:48 +04:00
parent 883a5b15bc
commit 5252888721
No known key found for this signature in database
GPG key ID: 572A97DFDA3D2E5C

View file

@ -90,6 +90,7 @@ return array(
*/
return apply_filters(
'woocommerce_paypal_payments_googlepay_supported_countries',
// phpcs:disable Squiz.Commenting.InlineComment
array(
'AU', // Australia
'AT', // Austria
@ -125,6 +126,7 @@ return array(
'US', // United States
'GB', // United Kingdom
)
// phpcs:enable Squiz.Commenting.InlineComment
);
},
@ -137,6 +139,7 @@ return array(
*/
return apply_filters(
'woocommerce_paypal_payments_googlepay_supported_currencies',
// phpcs:disable Squiz.Commenting.InlineComment
array(
'AUD', // Australian Dollar
'BRL', // Brazilian Real
@ -161,6 +164,7 @@ return array(
'TWD', // New Taiwan Dollar
'USD', // United States Dollar
)
// phpcs:enable Squiz.Commenting.InlineComment
);
},