| Code Coverage | ||||||||||
| Lines | Functions and Methods | Classes and Traits | ||||||||
| Total | n/a | 0 / 0 | n/a | 0 / 0 | CRAP | n/a | 0 / 0 | |||
| ISO4217Enum | n/a | 0 / 0 | n/a | 0 / 0 | 0 | n/a | 0 / 0 | |||
| 1 | <?php | 
| 2 | /** | 
| 3 | * Jingga | 
| 4 | * | 
| 5 | * PHP Version 8.1 | 
| 6 | * | 
| 7 | * @package phpOMS\Localization | 
| 8 | * @copyright Dennis Eichhorn | 
| 9 | * @license OMS License 2.0 | 
| 10 | * @version 1.0.0 | 
| 11 | * @link https://jingga.app | 
| 12 | */ | 
| 13 | declare(strict_types=1); | 
| 14 | |
| 15 | namespace phpOMS\Localization; | 
| 16 | |
| 17 | use phpOMS\Stdlib\Base\Enum; | 
| 18 | |
| 19 | /** | 
| 20 | * Currency names ISO list. | 
| 21 | * | 
| 22 | * @package phpOMS\Localization | 
| 23 | * @license OMS License 2.0 | 
| 24 | * @link https://jingga.app | 
| 25 | * @since 1.0.0 | 
| 26 | */ | 
| 27 | class ISO4217Enum extends Enum | 
| 28 | { | 
| 29 | public const _AED = 'Dirham, United Arab Emirates'; | 
| 30 | |
| 31 | public const _ALL = 'Leke, Albania'; | 
| 32 | |
| 33 | public const _AMD = 'Dram, Armenian'; | 
| 34 | |
| 35 | public const _AFN = 'Afghanis, Afghanistan'; | 
| 36 | |
| 37 | public const _ARS = 'Pesos, Argentina'; | 
| 38 | |
| 39 | public const _AWG = 'Guilders, Aruba'; | 
| 40 | |
| 41 | public const _AUD = 'Dollars, Australia'; | 
| 42 | |
| 43 | public const _AZN = 'New Manats, Azerbaijan'; | 
| 44 | |
| 45 | public const _AOA = 'Kwanza, Angolan'; | 
| 46 | |
| 47 | public const _BSD = 'Dollars, Bahamas'; | 
| 48 | |
| 49 | public const _BBD = 'Dollars, Barbados'; | 
| 50 | |
| 51 | public const _BYR = 'Rubles, Belarus'; | 
| 52 | |
| 53 | public const _BZD = 'Dollars, Belize'; | 
| 54 | |
| 55 | public const _BMD = 'Dollars, Bermuda'; | 
| 56 | |
| 57 | public const _BOB = 'Bolivianos, Bolivia'; | 
| 58 | |
| 59 | public const _BAM = 'Convertible Marka, Bosnia and Herzegovina'; | 
| 60 | |
| 61 | public const _BWP = 'Pulas, Botswana'; | 
| 62 | |
| 63 | public const _BGN = 'Leva, Bulgaria'; | 
| 64 | |
| 65 | public const _BRL = 'Reais, Brazil'; | 
| 66 | |
| 67 | public const _BND = 'Dollars, Brunei Darussalam'; | 
| 68 | |
| 69 | public const _KHR = 'Riels, Cambodia'; | 
| 70 | |
| 71 | public const _CAD = 'Dollars, Canada'; | 
| 72 | |
| 73 | public const _KYD = 'Dollars, Cayman Islands'; | 
| 74 | |
| 75 | public const _CLP = 'Pesos, Chile'; | 
| 76 | |
| 77 | public const _CNY = 'Yuan Renminbi, China'; | 
| 78 | |
| 79 | public const _COP = 'Pesos, Colombia'; | 
| 80 | |
| 81 | public const _CRC = 'Colón, Costa Rica'; | 
| 82 | |
| 83 | public const _HRK = 'Kuna, Croatia'; | 
| 84 | |
| 85 | public const _CUP = 'Pesos, Cuba'; | 
| 86 | |
| 87 | public const _CZK = 'Koruny, Czech Republic'; | 
| 88 | |
| 89 | public const _DKK = 'Kroner, Denmark'; | 
| 90 | |
| 91 | public const _DOP = 'Pesos, Dominican Republic'; | 
| 92 | |
| 93 | public const _XCD = 'Dollars, East Caribbean'; | 
| 94 | |
| 95 | public const _EGP = 'Pounds, Egypt'; | 
| 96 | |
| 97 | public const _SVC = 'Colones, El Salvador'; | 
| 98 | |
| 99 | public const _EUR = 'Euro'; | 
| 100 | |
| 101 | public const _FKP = 'Pounds, Falkland Islands'; | 
| 102 | |
| 103 | public const _FJD = 'Dollars, Fiji'; | 
| 104 | |
| 105 | public const _GHC = 'Cedis, Ghana'; | 
| 106 | |
| 107 | public const _GIP = 'Pounds, Gibraltar'; | 
| 108 | |
| 109 | public const _GTQ = 'Quetzales, Guatemala'; | 
| 110 | |
| 111 | public const _GGP = 'Pounds, Guernsey'; | 
| 112 | |
| 113 | public const _GYD = 'Dollars, Guyana'; | 
| 114 | |
| 115 | public const _HNL = 'Lempiras, Honduras'; | 
| 116 | |
| 117 | public const _HKD = 'Dollars, Hong Kong'; | 
| 118 | |
| 119 | public const _HUF = 'Forint, Hungary'; | 
| 120 | |
| 121 | public const _ISK = 'Kronur, Iceland'; | 
| 122 | |
| 123 | public const _INR = 'Rupees, India'; | 
| 124 | |
| 125 | public const _IDR = 'Rupiahs, Indonesia'; | 
| 126 | |
| 127 | public const _IRR = 'Rials, Iran'; | 
| 128 | |
| 129 | public const _IMP = 'Pounds, Isle of Man'; | 
| 130 | |
| 131 | public const _ILS = 'New Shekels, Israel'; | 
| 132 | |
| 133 | public const _JMD = 'Dollars, Jamaica'; | 
| 134 | |
| 135 | public const _JPY = 'Yen, Japan'; | 
| 136 | |
| 137 | public const _JEP = 'Pounds, Jersey'; | 
| 138 | |
| 139 | public const _KZT = 'Tenge, Kazakhstan'; | 
| 140 | |
| 141 | public const _KES = 'Kenyan Shilling'; | 
| 142 | |
| 143 | public const _KGS = 'Soms, Kyrgyzstan'; | 
| 144 | |
| 145 | public const _LAK = 'Kips, Laos'; | 
| 146 | |
| 147 | public const _LVL = 'Lati, Latvia'; | 
| 148 | |
| 149 | public const _LBP = 'Pounds, Lebanon'; | 
| 150 | |
| 151 | public const _LRD = 'Dollars, Liberia'; | 
| 152 | |
| 153 | public const _LTL = 'Litai, Lithuania'; | 
| 154 | |
| 155 | public const _MKD = 'Denars, Macedonia'; | 
| 156 | |
| 157 | public const _MYR = 'Ringgits, Malaysia'; | 
| 158 | |
| 159 | public const _MUR = 'Rupees, Mauritius'; | 
| 160 | |
| 161 | public const _MXN = 'Pesos, Mexico'; | 
| 162 | |
| 163 | public const _MNT = 'Tugriks, Mongolia'; | 
| 164 | |
| 165 | public const _MZN = 'Meticais, Mozambique'; | 
| 166 | |
| 167 | public const _NAD = 'Dollars, Namibia'; | 
| 168 | |
| 169 | public const _NPR = 'Rupees, Nepal'; | 
| 170 | |
| 171 | public const _ANG = 'Guilders, Netherlands Antilles'; | 
| 172 | |
| 173 | public const _NZD = 'Dollars, New Zealand'; | 
| 174 | |
| 175 | public const _NIO = 'Cordobas, Nicaragua'; | 
| 176 | |
| 177 | public const _NGN = 'Nairas, Nigeria'; | 
| 178 | |
| 179 | public const _KPW = 'Won, North Korea'; | 
| 180 | |
| 181 | public const _NOK = 'Krone, Norway'; | 
| 182 | |
| 183 | public const _OMR = 'Rials, Oman'; | 
| 184 | |
| 185 | public const _PKR = 'Rupees, Pakistan'; | 
| 186 | |
| 187 | public const _PAB = 'Balboa, Panama'; | 
| 188 | |
| 189 | public const _PYG = 'Guarani, Paraguay'; | 
| 190 | |
| 191 | public const _PEN = 'Nuevos Soles, Peru'; | 
| 192 | |
| 193 | public const _PHP = 'Pesos, Philippines'; | 
| 194 | |
| 195 | public const _PLN = 'Zlotych, Poland'; | 
| 196 | |
| 197 | public const _QAR = 'Rials, Qatar'; | 
| 198 | |
| 199 | public const _RON = 'New Lei, Romania'; | 
| 200 | |
| 201 | public const _RUB = 'Rubles, Russia'; | 
| 202 | |
| 203 | public const _SHP = 'Pounds, Saint Helena'; | 
| 204 | |
| 205 | public const _SAR = 'Riyals, Saudi Arabia'; | 
| 206 | |
| 207 | public const _RSD = 'Dinars, Serbia'; | 
| 208 | |
| 209 | public const _SCR = 'Rupees, Seychelles'; | 
| 210 | |
| 211 | public const _SGD = 'Dollars, Singapore'; | 
| 212 | |
| 213 | public const _SBD = 'Dollars, Solomon Islands'; | 
| 214 | |
| 215 | public const _SOS = 'Shillings, Somalia'; | 
| 216 | |
| 217 | public const _ZAR = 'Rand, South Africa'; | 
| 218 | |
| 219 | public const _KRW = 'Won, South Korea'; | 
| 220 | |
| 221 | public const _LKR = 'Rupees, Sri Lanka'; | 
| 222 | |
| 223 | public const _SEK = 'Kronor, Sweden'; | 
| 224 | |
| 225 | public const _CHF = 'Francs, Switzerland'; | 
| 226 | |
| 227 | public const _SRD = 'Dollars, Suriname'; | 
| 228 | |
| 229 | public const _SYP = 'Pounds, Syria'; | 
| 230 | |
| 231 | public const _TWD = 'New Dollars, Taiwan'; | 
| 232 | |
| 233 | public const _THB = 'Baht, Thailand'; | 
| 234 | |
| 235 | public const _TTD = 'Dollars, Trinidad and Tobago'; | 
| 236 | |
| 237 | public const _TRY = 'Lira, Turkey'; | 
| 238 | |
| 239 | public const _TRL = 'Liras, Turkey'; | 
| 240 | |
| 241 | public const _TVD = 'Dollars, Tuvalu'; | 
| 242 | |
| 243 | public const _UAH = 'Hryvnia, Ukraine'; | 
| 244 | |
| 245 | public const _GBP = 'Pounds, United Kingdom'; | 
| 246 | |
| 247 | public const _USD = 'Dollars, United States of America'; | 
| 248 | |
| 249 | public const _UYU = 'Pesos, Uruguay'; | 
| 250 | |
| 251 | public const _UZS = 'Sums, Uzbekistan'; | 
| 252 | |
| 253 | public const _VEF = 'Bolivares Fuertes, Venezuela'; | 
| 254 | |
| 255 | public const _VND = 'Dong, Vietnam'; | 
| 256 | |
| 257 | public const _YER = 'Rials, Yemen'; | 
| 258 | |
| 259 | public const _ZWD = 'Zimbabwe Dollars, Zimbabwe'; | 
| 260 | |
| 261 | public const _ZMK = 'Kwacha, Zambian'; | 
| 262 | |
| 263 | public const _ZWL = 'Dollar, Zimbabwean'; | 
| 264 | |
| 265 | public const _BDT = 'Taka, Bangladeshi'; | 
| 266 | |
| 267 | public const _BHD = 'Dinar, Bahraini'; | 
| 268 | |
| 269 | public const _BIF = 'Franc, Burundian'; | 
| 270 | |
| 271 | public const _BOV = 'Mvdol, Bolivian'; | 
| 272 | |
| 273 | public const _BTN = 'Bhutanes,e Ngultrum'; | 
| 274 | |
| 275 | public const _CDF = 'Franc, Congolese'; | 
| 276 | |
| 277 | public const _CHE = 'WIR Euro (complementary currency)'; | 
| 278 | |
| 279 | public const _CHW = 'WIR Franc (complementary currency)'; | 
| 280 | |
| 281 | public const _CLF = 'Unidad de Fomento (funds code)'; | 
| 282 | |
| 283 | public const _COU = 'Unidad de Valor Real (UVR) (funds code)'; | 
| 284 | |
| 285 | public const _CUC = 'Peso, Cuban convertible'; | 
| 286 | |
| 287 | public const _CVE = 'Escudo, Cape Verdean'; | 
| 288 | |
| 289 | public const _DJF = 'Franc, Djiboutian'; | 
| 290 | |
| 291 | public const _DZD = 'Dinar, Algerian'; | 
| 292 | |
| 293 | public const _ERN = 'Nakfa, Eritrean'; | 
| 294 | |
| 295 | public const _ETB = 'Birr, Ethiopian'; | 
| 296 | |
| 297 | public const _GEL = 'Lari, Georgian'; | 
| 298 | |
| 299 | public const _GHS = 'Cedi, Ghanaian'; | 
| 300 | |
| 301 | public const _GMD = 'Dalasi, Gambian'; | 
| 302 | |
| 303 | public const _GNF = 'Franc, Guinean'; | 
| 304 | |
| 305 | public const _HTG = 'Gourde, Haitian'; | 
| 306 | |
| 307 | public const _IQD = 'Dinar, Iraqi'; | 
| 308 | |
| 309 | public const _JOD = 'Dinar, Jordanian'; | 
| 310 | |
| 311 | public const _KMF = 'Franc, Comorian'; | 
| 312 | |
| 313 | public const _KWD = 'Dinar, Kuwaiti'; | 
| 314 | |
| 315 | public const _LSL = 'Loti, Lesotho'; | 
| 316 | |
| 317 | public const _LYD = 'Dinar, Libyan'; | 
| 318 | |
| 319 | public const _MAD = 'Dirham, Moroccan'; | 
| 320 | |
| 321 | public const _MDL = 'Leu, Moldovan'; | 
| 322 | |
| 323 | public const _MGA = 'Ariary, Malagasy'; | 
| 324 | |
| 325 | public const _MMK = 'Kyat, Burmese'; | 
| 326 | |
| 327 | public const _MOP = 'Pataca, Macanese'; | 
| 328 | |
| 329 | public const _MRO = 'Ouguiya, Mauritanian'; | 
| 330 | |
| 331 | public const _MVR = 'Rufiyaa, Maldivian'; | 
| 332 | |
| 333 | public const _MWK = 'Kwacha, Malawian'; | 
| 334 | |
| 335 | public const _MXV = 'Investment Unit, Mexican'; | 
| 336 | |
| 337 | public const _PGK = 'Kina, Papua New Guinean'; | 
| 338 | |
| 339 | public const _RWF = 'Franc, Rwandan'; | 
| 340 | |
| 341 | public const _SDG = 'Pound, Sudanese'; | 
| 342 | |
| 343 | public const _SLL = 'Leone, Sierra Leonean'; | 
| 344 | |
| 345 | public const _SSP = 'Pound, South Sudanese'; | 
| 346 | |
| 347 | public const _STD = 'Dobra, São Tomé and Príncipe'; | 
| 348 | |
| 349 | public const _SZL = 'Lilangeni, Swazi'; | 
| 350 | |
| 351 | public const _TJS = 'Somoni, Tajikistani'; | 
| 352 | |
| 353 | public const _TMT = 'Manat, Turkmenistani'; | 
| 354 | |
| 355 | public const _TND = 'Dinar, Tunisian'; | 
| 356 | |
| 357 | public const _TOP = 'Paʻanga, Tongan'; | 
| 358 | |
| 359 | public const _TZS = 'Shilling, Tanzanian'; | 
| 360 | |
| 361 | public const _UGX = 'Shilling, Ugandan'; | 
| 362 | |
| 363 | public const _USN = 'United States dollar (next day) (funds code)'; | 
| 364 | |
| 365 | public const _USS = 'United States dollar (same day) (funds code)'; | 
| 366 | |
| 367 | public const _UYI = 'Uruguay Peso en Unidades Indexadas (URUIURUI) (funds code)'; | 
| 368 | |
| 369 | public const _VUV = 'Vatu, Vanuatu'; | 
| 370 | |
| 371 | public const _WST = 'Tala, Samoan'; | 
| 372 | |
| 373 | public const _XAF = 'CFA Franc, Central African'; | 
| 374 | |
| 375 | public const _XAG = 'Silver (one troy ounce)'; | 
| 376 | |
| 377 | public const _XAU = 'Gold (one troy ounce)'; | 
| 378 | |
| 379 | public const _XBA = 'Composite Unit (EURCO) (bond market unit), European'; | 
| 380 | |
| 381 | public const _XBB = 'Monetary Unit (E.M.U.-6) (bond market unit), European'; | 
| 382 | |
| 383 | public const _XBC = 'Unit of Account 9 (E.U.A.-9) (bond market unit), European'; | 
| 384 | |
| 385 | public const _XBD = 'Unit of Account 17 (E.U.A.-17) (bond market unit), European'; | 
| 386 | |
| 387 | public const _XDR = 'Special drawing rights'; | 
| 388 | |
| 389 | public const _XFU = 'UIC franc (special settlement currency)'; | 
| 390 | |
| 391 | public const _XOF = 'CFA franc, West African'; | 
| 392 | |
| 393 | public const _XPD = 'Palladium'; | 
| 394 | |
| 395 | public const _XPF = 'CFP franc'; | 
| 396 | |
| 397 | public const _XPT = 'Platinum'; | 
| 398 | |
| 399 | public const _XSU = 'Sucre'; | 
| 400 | |
| 401 | public const _XTS = 'Testing Currency Code'; | 
| 402 | |
| 403 | public const _XUA = 'ADB Unit of Account'; | 
| 404 | |
| 405 | public const _ZMW = 'kwacha, Zambian'; | 
| 406 | } |