File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed
Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -49,6 +49,7 @@ public static function getCurrency(string $iso): array|null
4949 "TWD " => ["name " => "New Taiwan Dollar " , "numeric_code " => "901 " ],
5050 "THB " => ["name " => "Baht " , "numeric_code " => "764 " ],
5151 "MYR " => ["name " => "Malaysian Ringgit " , "numeric_code " => "458 " ],
52+ "CZK " => ["name " => "Czech Koruna " , "numeric_code " => "203 " ],
5253 ];
5354
5455 /**
@@ -74,7 +75,7 @@ public static function getAllSymbols()
7475
7576 return collect (array_keys (self ::$ currencyList ))
7677 ->mapWithKeys (function ($ iso ) use (&$ formatter , &$ count ){
77- if ( is_null ($ formatter ) ){
78+ if ( is_null ($ formatter ) ){
7879 $ formatter = App::make (NumberFormatter::class, ['iso ' => $ iso ]);
7980 }
8081 $ formatter ->setTextAttribute (NumberFormatter::CURRENCY_CODE , $ iso );
You can’t perform that action at this time.
0 commit comments