rocketfellows/gr-vat-format-validator

v1.0.0 2023-03-09 18:05 UTC

This package is not auto-updated.

Last update: 2024-05-03 22:30:00 UTC


README

Code Coverage Badge

This component provides Greece 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/gr-vat-format-validator

Usage example

Valid Greece vat number:

$validator = new GRVatFormatValidator();
$validator->isValid('123456789');
$validator->isValid('EL123456789');
$validator->isValid('GR123456789');

Returns:

true
true
true

Invalid Greece vat number:

$validator = new GRVatFormatValidator();
$validator->isValid('1234567890');
$validator->isValid('12345678');
$validator->isValid('EL1234567890');
$validator->isValid('EL12345678');
$validator->isValid('GR1234567890');
$validator->isValid('GR12345678');
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.