Skip to content

Commit

Permalink
Add currency symbols
Browse files Browse the repository at this point in the history
  • Loading branch information
PrinsFrank committed Mar 8, 2023
1 parent 06ef346 commit e330b8c
Showing 1 changed file with 49 additions and 0 deletions.
49 changes: 49 additions & 0 deletions src/Currency/Symbol.php
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 = '¥';
}

0 comments on commit e330b8c

Please sign in to comment.