mirror of
https://github.com/Karaka-Management/phpOMS.git
synced 2026-01-11 09:48:40 +00:00
55 lines
901 B
PHP
55 lines
901 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 ISO3166TwoATCharEnum extends Enum
|
|
{
|
|
public const _AB = 'AB';
|
|
|
|
public const _BC = 'BC';
|
|
|
|
public const _MB = 'MB';
|
|
|
|
public const _NB = 'NB';
|
|
|
|
public const _NL = 'NL';
|
|
|
|
public const _NT = 'NT';
|
|
|
|
public const _NS = 'NS';
|
|
|
|
public const _NU = 'NU';
|
|
|
|
public const _ON = 'ON';
|
|
|
|
public const _PE = 'PE';
|
|
|
|
public const _QC = 'QC';
|
|
|
|
public const _SK = 'SK';
|
|
|
|
public const _YT = 'YT';
|
|
}
|