phpOMS/Localization/Subregion/ISO3166TwoCHCharEnum.php
Dennis Eichhorn 0a8a5c63c5
Some checks failed
Compress images / calibreapp/image-actions (push) Has been cancelled
CI / general_module_workflow_php (push) Has been cancelled
fix permissions
2025-04-02 14:15:07 +00:00

81 lines
1.3 KiB
PHP

<?php
/**
* Jingga
*
* PHP Version 8.2
*
* @package phpOMS\Localization\Subregion
* @copyright Dennis Eichhorn
* @license OMS License 2.2
* @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.2
* @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';
}