Skip to content

Commit

Permalink
Update src/ISO3166.php
Browse files Browse the repository at this point in the history
fix `numeric` identifier; type `string` expected (to support leading zeros)
  • Loading branch information
alcohol committed Oct 10, 2024
1 parent ccf3fa0 commit ead00f4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ISO3166.php
Original file line number Diff line number Diff line change
Expand Up @@ -1287,7 +1287,7 @@ private function lookup(string $key, string $value): array
'name' => 'Kosovo',
'alpha2' => 'XK',
'alpha3' => 'XKX',
'numeric' => 412,
'numeric' => '412',
'currency' => [
'EUR',
],
Expand Down

0 comments on commit ead00f4

Please sign in to comment.