mirror of
https://github.com/Karaka-Management/phpOMS.git
synced 2026-01-11 09:48:40 +00:00
57 lines
931 B
PHP
57 lines
931 B
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 ISO3166TwoCZCharEnum extends Enum
|
|
{
|
|
public const _31 = '31';
|
|
|
|
public const _64 = '64';
|
|
|
|
public const _41 = '41';
|
|
|
|
public const _52 = '52';
|
|
|
|
public const _51 = '51';
|
|
|
|
public const _80 = '80';
|
|
|
|
public const _71 = '71';
|
|
|
|
public const _53 = '53';
|
|
|
|
public const _32 = '32';
|
|
|
|
public const _10 = '10';
|
|
|
|
public const _20 = '20';
|
|
|
|
public const _42 = '42';
|
|
|
|
public const _63 = '63';
|
|
|
|
public const _72 = '72';
|
|
}
|