Back to Validation

Nip

docs/validators/Nip.md

3.1.11.7 KB
Original Source
<!-- SPDX-License-Identifier: MIT SPDX-FileCopyrightText: (c) Respect Project Contributors SPDX-FileContributor: Alexandre Gomes Gaigalas <[email protected]> SPDX-FileContributor: Henrique Moody <[email protected]> -->

Nip

  • Nip()

Validates whether the input is a Polish VAT identification number (NIP).

php
v::nip()->assert('1645865777');
// Validation passes successfully

v::nip()->assert('1645865778');
// → "1645865778" must be a Polish VAT identification number

v::nip()->assert('1234567890');
// → "1234567890" must be a Polish VAT identification number

v::nip()->assert('164-586-57-77');
// → "164-586-57-77" must be a Polish VAT identification number

v::nip()->assert('164-58-65-777');
// → "164-58-65-777" must be a Polish VAT identification number

Templates

Nip::TEMPLATE_STANDARD

ModeTemplate
default{{subject}} must be a Polish VAT identification number
inverted{{subject}} must not be a Polish VAT identification number

Template placeholders

PlaceholderDescription
subjectThe validated input or the custom validator name (if specified).

Categorization

  • Identifications

Changelog

VersionDescription
3.0.0Templates changed
2.0.0Created

See Also