Automattic\WooCommerce\Admin\Features\OnboardingTasks\Tasks

Tax::get_stripe_tax_support_countriesprivate staticWC 1.0

Get an array of countries that support Stripe tax.

Method of the class: Tax{}

No Hooks.

Returns

Array.

Usage

$result = Tax::get_stripe_tax_support_countries();

Tax::get_stripe_tax_support_countries() code WC 10.5.0

private static function get_stripe_tax_support_countries() {
	// https://docs.stripe.com/tax/supported-countries#supported-countries accurate as of 2024-08-26.
	// countries with remote sales not included.
	return array(
		'AU',
		'AT',
		'BE',
		'BG',
		'CA',
		'HR',
		'CY',
		'CZ',
		'DK',
		'EE',
		'FI',
		'FR',
		'DE',
		'GR',
		'HK',
		'HU',
		'IE',
		'IT',
		'JP',
		'LV',
		'LT',
		'LU',
		'MT',
		'NL',
		'NZ',
		'NO',
		'PL',
		'PT',
		'RO',
		'SG',
		'SK',
		'SI',
		'ES',
		'SE',
		'CH',
		'AE',
		'GB',
		'US',
	);
}