-
-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
06ef346
commit e330b8c
Showing
1 changed file
with
49 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
<?php | ||
declare(strict_types=1); | ||
|
||
namespace PrinsFrank\Standards\Currency; | ||
|
||
enum Symbol: string | ||
{ | ||
case Afghani = '؋'; | ||
case Armenian_Dram = '֏'; | ||
case Aruban_Florin = 'ƒ'; | ||
case Azerbaijan_Manat = '₼'; | ||
case Bahraini_Dinar = '.د.ب'; | ||
case Baht = '฿'; | ||
case Cent = '¢'; | ||
case Costa_Rican_Colon = '₡'; | ||
case Dollar = '$'; | ||
case Dong = '₫'; | ||
case Egyptian_Pound = '.ج.م'; | ||
case Euro = '€'; | ||
case Fils = 'فلس'; | ||
case Generic = '¤'; | ||
case Ghana_Cedi = '₵'; | ||
case Guarani = '₲'; | ||
case Hryvnia = '₴'; | ||
case Indian_Rupee = '₹'; | ||
case Iranian_Rial = '﷼'; | ||
case Iraqi_Dinar = '.د.ع'; | ||
case Lao_Kip = '₭'; | ||
case Lari = '₾'; | ||
case Lebanese_Pound = '.ل.ل'; | ||
case Moroccan_Dirham = '.د.م'; | ||
case Naira = '₦'; | ||
case New_Israeli_Sheqel = '₪'; | ||
case Philippine_Peso = '₱'; | ||
case Pound = '£'; | ||
case Qatari_Rial = '.ر.ق'; | ||
case Rial_Omani = '.ر.ع'; | ||
case Riel = '៛'; | ||
case Rufiyaa = 'ރ'; | ||
case Russian_Ruble = '₽'; | ||
case Saudi_Riyal = '.ر.س'; | ||
case Taka = '৳'; | ||
case Tenge = '₸'; | ||
case Turkish_Lira = '₺'; | ||
case UAE_Dirham = '.د.إ'; | ||
case Won = '₩'; | ||
case Yemeni_Rial = '.ر.ي'; | ||
case Yen = '¥'; | ||
} |