mirror of
https://github.com/Karaka-Management/phpOMS.git
synced 2026-01-11 17:58:41 +00:00
61 lines
1.1 KiB
PHP
61 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 ISO3166TwoDENameEnum extends Enum
|
|
{
|
|
public const _BW = 'Baden-Württemberg';
|
|
|
|
public const _BY = 'Bayern';
|
|
|
|
public const _BE = 'Berlin';
|
|
|
|
public const _BB = 'Brandenburg';
|
|
|
|
public const _HB = 'Bremen';
|
|
|
|
public const _HH = 'Hamburg';
|
|
|
|
public const _HE = 'Hessen';
|
|
|
|
public const _MV = 'Mecklenburg-Vorpommern';
|
|
|
|
public const _NI = 'Niedersachsen';
|
|
|
|
public const _NW = 'Nordrhein-Westfalen';
|
|
|
|
public const _RP = 'Rheinland-Pfalz';
|
|
|
|
public const _SL = 'Saarland';
|
|
|
|
public const _SN = 'Sachsen';
|
|
|
|
public const _ST = 'Sachsen-Anhalt';
|
|
|
|
public const _SH = 'Schleswig-Holstein';
|
|
|
|
public const _TH = 'Thüringen';
|
|
}
|