Skip to content

Commit

Permalink
Fix regression, old postal code format for KZ is 6 digits, not 5.
Browse files Browse the repository at this point in the history
  • Loading branch information
bojanz committed Nov 28, 2023
1 parent 843435b commit d7faef1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/AddressFormat/AddressFormatRepository.php
Original file line number Diff line number Diff line change
Expand Up @@ -812,7 +812,7 @@ protected function getDefinitions(): array
'addressLine1', 'locality', 'postalCode',
],
'administrative_area_type' => 'region',
'postal_code_pattern' => '\d{5}|[A-Z0-9]{7}',
'postal_code_pattern' => '\d{6}|[A-Z0-9]{7}',
'subdivision_depth' => 1,
],
'LA' => [
Expand Down

0 comments on commit d7faef1

Please sign in to comment.