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