rocketfellows/pt-vat-format-validator

v1.0.0 2023-03-30 17:36 UTC

This package is auto-updated.

Last update: 2024-04-30 00:56:50 UTC


README

Code Coverage Badge

This component provides Portugal 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/pt-vat-format-validator

Usage example

Valid Portugal vat number:

$validator = new PTVatFormatValidator();
$validator->isValid('PT123456789');
$validator->isValid('123456789');

Returns:

true
true

Invalid Portugal vat number:

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