rocketfellows/hr-vat-format-validator

v1.0.0 2023-02-25 16:02 UTC

This package is not auto-updated.

Last update: 2024-05-05 20:25:18 UTC


README

Code Coverage Badge

This component provides Croatia 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/hr-vat-format-validator

Usage example

Valid Croatia vat number:

$validator = new HRVatFormatValidator();
$validator->isValid('12345678912');
$validator->isValid('HR99999999999');

Returns:

true
true

Invalid Croatia vat number:

$validator = new HRVatFormatValidator();
$validator->isValid('999999999999');
$validator->isValid('9999999999');
$validator->isValid('DE99999999999');
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.