Skip to content

Commit

Permalink
Fix BE regex (#43)
Browse files Browse the repository at this point in the history
  • Loading branch information
neodc committed Aug 7, 2023
1 parent a424f34 commit 04ded11
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Validator.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ class Validator
*/
private $patterns = array(
'AT' => 'U[A-Z\d]{8}',
'BE' => '[0|1]{1}\d{9}',
'BE' => '[01]{1}\d{9}',
'BG' => '\d{9,10}',
'CH' => 'E(-| ?)(\d{3}(\.)\d{3}(\.)\d{3}|\d{9})( ?)(MWST|TVA|IVA)?',
'CY' => '\d{8}[A-Z]',
Expand Down

0 comments on commit 04ded11

Please sign in to comment.