rocketfellows/bg-vat-format-validator

v1.0.0 2023-02-04 17:56 UTC

This package is not auto-updated.

Last update: 2024-04-28 22:52:56 UTC


README

Code Coverage Badge

This component provides Bulgaria 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/bg-vat-format-validator

Usage example

Valid Bulgaria vat number:

$validator = new BGVatFormatValidator();
$validator->isValid('BG123456789');
$validator->isValid('BG0123456789');
$validator->isValid('123456789');
$validator->isValid('0123456789');

Returns:

true
true
true
true

Invalid Bulgaria vat number:

$validator = new BGVatFormatValidator();
$validator->isValid('BG01234567899');
$validator->isValid('BG01234567');
$validator->isValid('012345667899');
$validator->isValid('12345667');
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.