rocketfellows/se-vat-format-validator

v1.0.0 2023-04-07 11:05 UTC

This package is auto-updated.

Last update: 2024-05-07 13:41:47 UTC


README

Code Coverage Badge

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

Installation

composer require rocketfellows/se-vat-format-validator

Usage example

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

Contributing

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.