1
0
Fork 0
mirror of synced 2024-06-03 11:24:48 +12:00
appwrite/app/config/eu.php
2020-06-20 14:20:49 +03:00

38 lines
741 B
PHP

<?php
$list = [
'AT', // Austria
'BE', // Belgium
'HR', // Croatia
'BG', // Bulgaria
'CY', // Cyprus
'CZ', // Czech Republic
'DK', // Denmark
'EE', // Estonia
'FI', // Finland
'FR', // France
'DE', // Germany
'GR', // Greece
'HU', // Hungary
'IE', // Ireland
'IT', // Italy
'LV', // Latvia
'LT', // Lithuania
'LU', // Luxembourg
'MT', // Malta
'NL', // Netherlands
'PL', // Poland
'PT', // Portugal
'RO', // Romania
'SK', // Slovakia
'SI', // Slovenia
'ES', // Spain
'SE', // Sweden
];
if (\time() < \strtotime('2020-01-31')) { // @see https://en.wikipedia.org/wiki/Brexit
$list[] = 'GB'; // // United Kingdom
}
return $list;