rocketfellows/mt-vat-format-validator

v1.0.0 2023-03-20 19:17 UTC

This package is not auto-updated.

Last update: 2024-05-14 23:25:31 UTC


README

Code Coverage Badge

This component provides Malta 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/mt-vat-format-validator

Usage example

Valid Malta vat number:

$validator = new MTVatFormatValidator();
$validator->isValid('MT12345678');
$validator->isValid('12345678');

Returns:

true
true

Invalid Malta vat number:

$validator = new MTVatFormatValidator();
$validator->isValid('MT123456789');
$validator->isValid('MT1234567');
$validator->isValid('123456789');
$validator->isValid('1234567');
$validator->isValid('DE12345678');
$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.