mirror of
https://github.com/Karaka-Management/phpOMS.git
synced 2026-01-11 17:58:41 +00:00
61 lines
991 B
PHP
61 lines
991 B
PHP
<?php
|
|
/**
|
|
* Jingga
|
|
*
|
|
* PHP Version 8.1
|
|
*
|
|
* @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 ISO3166TwoPLCharEnum extends Enum
|
|
{
|
|
public const _02 = '02';
|
|
|
|
public const _04 = '04';
|
|
|
|
public const _06 = '06';
|
|
|
|
public const _08 = '08';
|
|
|
|
public const _10 = '10';
|
|
|
|
public const _12 = '12';
|
|
|
|
public const _14 = '14';
|
|
|
|
public const _16 = '16';
|
|
|
|
public const _18 = '18';
|
|
|
|
public const _20 = '20';
|
|
|
|
public const _22 = '22';
|
|
|
|
public const _24 = '24';
|
|
|
|
public const _26 = '26';
|
|
|
|
public const _28 = '28';
|
|
|
|
public const _30 = '30';
|
|
|
|
public const _32 = '32';
|
|
}
|