phpOMS/Localization/Subregion/ISO3166TwoFRNameEnum.php
2024-03-20 07:21:26 +00:00

55 lines
1.1 KiB
PHP
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?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-dAzur';
}