mirror of
https://github.com/Karaka-Management/phpOMS.git
synced 2026-01-11 09:48:40 +00:00
81 lines
1.3 KiB
PHP
81 lines
1.3 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 ISO3166TwoCHCharEnum extends Enum
|
|
{
|
|
public const _AG = 'AG';
|
|
|
|
public const _AR = 'AR';
|
|
|
|
public const _AI = 'AI';
|
|
|
|
public const _BL = 'BL';
|
|
|
|
public const _BS = 'BS';
|
|
|
|
public const _BE = 'BE';
|
|
|
|
public const _FR = 'FR';
|
|
|
|
public const _GE = 'GE';
|
|
|
|
public const _GL = 'GL';
|
|
|
|
public const _GR = 'GR';
|
|
|
|
public const _JU = 'JU';
|
|
|
|
public const _LU = 'LU';
|
|
|
|
public const _NE = 'NE';
|
|
|
|
public const _NW = 'NW';
|
|
|
|
public const _OW = 'OW';
|
|
|
|
public const _SG = 'SG';
|
|
|
|
public const _SH = 'SH';
|
|
|
|
public const _SZ = 'SZ';
|
|
|
|
public const _SO = 'SO';
|
|
|
|
public const _TG = 'TG';
|
|
|
|
public const _TI = 'TI';
|
|
|
|
public const _UR = 'UR';
|
|
|
|
public const _VS = 'VS';
|
|
|
|
public const _VD = 'VD';
|
|
|
|
public const _ZG = 'ZG';
|
|
|
|
public const _ZH = 'ZH';
|
|
}
|