This component provides Sweden vat number format validator.
Implementation of interface rocketfellows\CountryVatFormatValidatorInterface\CountryVatFormatValidatorInterface
Depends on https://github.com/rocketfellows/country-vat-format-validator-interface
composer require rocketfellows/se-vat-format-validator
Valid Sweden vat number:
$validator = new SEVatFormatValidator();
$validator->isValid('SE123456789012');
$validator->isValid('123456789012');
Returns:
true
true
Invalid Sweden vat number:
$validator = new SEVatFormatValidator();
$validator->isValid('SE12345678901');
$validator->isValid('SE1234567890123');
$validator->isValid('DE123456789012');
$validator->isValid('1234567890123');
$validator->isValid('12345678901');
$validator->isValid('');
false
false
false
false
false
false
Welcome to pull requests. If there is a major changes, first please open an issue for discussion.
Please make sure to update tests as appropriate.