mirror of
https://github.com/Karaka-Management/phpOMS.git
synced 2026-01-11 09:48:40 +00:00
55 lines
1.1 KiB
PHP
55 lines
1.1 KiB
PHP
<?php
|
||
/**
|
||
* Jingga
|
||
*
|
||
* PHP Version 8.2
|
||
*
|
||
* @package phpOMS\Localization\Subregion
|
||
* @copyright Dennis Eichhorn
|
||
* @license OMS License 2.0
|
||
* @version 1.0.0
|
||
* @link https://jingga.app
|
||
*/
|
||
declare(strict_types=1);
|
||
|
||
namespace phpOMS\Localization\Subregion;
|
||
|
||
use phpOMS\Stdlib\Base\Enum;
|
||
|
||
/**
|
||
* Country codes ISO 3166-2 list.
|
||
*
|
||
* @package phpOMS\Localization\Subregion
|
||
* @license OMS License 2.0
|
||
* @link https://jingga.app
|
||
* @since 1.0.0
|
||
*/
|
||
class ISO3166TwoFRNameEnum extends Enum
|
||
{
|
||
public const _ARA = 'Auvergne-Rhône-Alpes';
|
||
|
||
public const _BFC = 'Bourgogne-Franche-Comté';
|
||
|
||
public const _BRE = 'Bretagne';
|
||
|
||
public const _CVL = 'Centre-Val de Loire';
|
||
|
||
public const _20R = 'Corse';
|
||
|
||
public const _GES = 'Grand-Est';
|
||
|
||
public const _HDF = 'Hauts-de-France';
|
||
|
||
public const _IDF = 'Île-de-France';
|
||
|
||
public const _NOR = 'Normandie';
|
||
|
||
public const _NAQ = 'Nouvelle-Aquitaine';
|
||
|
||
public const _OCC = 'Occitanie';
|
||
|
||
public const _PDL = 'Pays-de-la-Loire';
|
||
|
||
public const _PAC = 'Provence-Alpes-Côte-d’Azur';
|
||
}
|