1# Bic
2
3- `v::bic(string $countryCode)`
4
5Validates a BIC (Bank Identifier Code) for a given country.
6
7```php
8v::bic("de")->validate("VZVDDED1XXX"); // true
9v::bic("de")->validate("VZVDDED1"); // true
10```
11
12Theses country codes are supported:
13
14 * "de" (Germany) - You must add `"malkusch/bav": "~1.0"` to your `require` property on composer.json file.
15
16***
17See also:
18
19  * [Bank](Bank.md)
20  * [BankAccount](BankAccount.md)
21