mirror of
https://github.com/Karaka-Management/phpOMS.git
synced 2026-01-11 01:38:41 +00:00
83 lines
1.3 KiB
PHP
83 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 ISO3166TwoBRCharEnum extends Enum
|
|
{
|
|
public const _AC = 'AC';
|
|
|
|
public const _AL = 'AL';
|
|
|
|
public const _AP = 'AP';
|
|
|
|
public const _AM = 'AM';
|
|
|
|
public const _BA = 'BA';
|
|
|
|
public const _CE = 'CE';
|
|
|
|
public const _DF = 'DF';
|
|
|
|
public const _ES = 'ES';
|
|
|
|
public const _GO = 'GO';
|
|
|
|
public const _MA = 'MA';
|
|
|
|
public const _MT = 'MT';
|
|
|
|
public const _MS = 'MS';
|
|
|
|
public const _MG = 'MG';
|
|
|
|
public const _PA = 'PA';
|
|
|
|
public const _PB = 'PB';
|
|
|
|
public const _PR = 'PR';
|
|
|
|
public const _PE = 'PE';
|
|
|
|
public const _PI = 'PI';
|
|
|
|
public const _RJ = 'RJ';
|
|
|
|
public const _RN = 'RN';
|
|
|
|
public const _RS = 'RS';
|
|
|
|
public const _RO = 'RO';
|
|
|
|
public const _RR = 'RR';
|
|
|
|
public const _SC = 'SC';
|
|
|
|
public const _SP = 'SP';
|
|
|
|
public const _SE = 'SE';
|
|
|
|
public const _TO = 'TO';
|
|
}
|