This component provides Latvia vat number format validator.
Implementation of interface rocketfellows\CountryVatFormatValidatorInterface\CountryVatFormatValidatorInterface
Depends on https://github.com/rocketfellows/country-vat-format-validator-interface
composer require rocketfellows/lv-vat-format-validatorValid Latvia vat number:
$validator = new LVVatFormatValidator();
$validator->isValid('LV12345678901');
$validator->isValid('12345678901');Returns:
true
trueInvalid Latvia vat number:
$validator = new LVVatFormatValidator();
$validator->isValid('LV123456789011');
$validator->isValid('LV1234567890');
$validator->isValid('123456789011');
$validator->isValid('1234567890');
$validator->isValid('DE12345678901');false
false
false
false
falseWelcome to pull requests. If there is a major changes, first please open an issue for discussion.
Please make sure to update tests as appropriate.