Update the list of non-EU countries using VAT

This commit is contained in:
Luminus Olumide Alabi 2019-11-08 17:14:18 +00:00
parent f8709ab83f
commit a09efed82e
1 changed files with 1 additions and 1 deletions

View File

@ -372,7 +372,7 @@ class WC_Countries {
* @return string[]
*/
public function countries_using_vat() {
$countries = array( 'BS', 'BH', 'BB', 'EG', 'ET', 'FJ', 'GM', 'GH', 'IN', 'IR', 'KZ', 'MU', 'MN', 'NA', 'NP', 'NG', 'PS', 'RW', 'KN', 'SA', 'ZA', 'KR', 'LK', 'TH' );
$countries = array( 'AZ', 'BS', 'BH', 'BY', 'BB', 'EG', 'ET', 'FJ', 'GM', 'GH', 'IN', 'IR', 'IL', 'KZ', 'MU', 'MK', 'MX', 'MD', 'MN', 'ME', 'NA', 'NP', 'NG', 'PS', 'PY', 'RU', 'RW', 'KN', 'SA', 'RS', 'ZA', 'KR', 'LK', 'TH', 'TR', 'UA', 'UY', 'UZ', 'VE', 'VN', 'AE' );
return apply_filters( 'woocommerce_countries_using_vat', $countries );
}