respect-validation/docs/IdentityCard.md
Henrique Moody d8e5f305a7
Remove "malkusch/bav" as a dependency
This packages is not maintained anymore, therefore it should be removed
from our codebase.
2017-11-12 13:59:05 +01:00

27 lines
606 B
Markdown

# IdentityCard
- `IdentityCard(string $countryCode)`
Validates Identity Card numbers according to the defined country.
```php
v::identityCard('PL')->validate('AYW036733'); // true
v::identityCard('PL')->validate('APH505567'); // true
v::identityCard('PL')->validate('APH 505567'); // false
v::identityCard('PL')->validate('AYW036731'); // false
```
For now this rule only accepts Polish Identity Card numbers (Dowód Osobisty).
## Changelog
Version | Description
--------|-------------
1.1.0 | Created
***
See also:
- [Pesel](Pesel.md)
- [SubdivisionCode](SubdivisionCode.md)
- [Vatin](Vatin.md)