rocketfellows/de-vat-format-validator

v1.0.0 2023-02-18 13:37 UTC

This package is not auto-updated.

Last update: 2024-05-12 17:48:58 UTC


README

Code Coverage Badge

This component provides Germany 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/de-vat-format-validator

Usage example

Valid Germany vat number:

$validator = new DEVatFormatValidator();
$validator->isValid('123456789');
$validator->isValid('DE123456789');

Returns:

true
true

Invalid Germany vat number:

$validator = new DEVatFormatValidator();
$validator->isValid('1234567890');
$validator->isValid('12345678');
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.