phpOMS/Localization/Subregion/ISO3166TwoCACharEnum.php
2024-03-20 07:21:26 +00:00

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';
}