Skip to content

Commit f9c6193

Browse files
authored
Deprecate SLL and HRK currencies, add SLE (#29)
1 parent bccd5e6 commit f9c6193

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

src/Currency.php

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -527,7 +527,7 @@ final class Currency implements JsonSerializable
527527
'default_fraction_digits' => 2,
528528
'sub_unit' => 100,
529529
'sign' => 'kn',
530-
'deprecated' => false,
530+
'deprecated' => true,
531531
],
532532
'HTG' => [
533533
'display_name' => 'Gourde',
@@ -1089,13 +1089,21 @@ final class Currency implements JsonSerializable
10891089
'sign' => '£',
10901090
'deprecated' => false,
10911091
],
1092+
'SLE' => [
1093+
'display_name' => 'Leone',
1094+
'numeric_code' => 925,
1095+
'default_fraction_digits' => 2,
1096+
'sub_unit' => 100,
1097+
'sign' => 'Le',
1098+
'deprecated' => false,
1099+
],
10921100
'SLL' => [
10931101
'display_name' => 'Leone',
10941102
'numeric_code' => 694,
10951103
'default_fraction_digits' => 2,
10961104
'sub_unit' => 100,
10971105
'sign' => 'Le',
1098-
'deprecated' => false,
1106+
'deprecated' => true,
10991107
],
11001108
'SOS' => [
11011109
'display_name' => 'Somali Shilling',

0 commit comments

Comments
 (0)