Skip to content

Commit 645b9ae

Browse files
committed
Document available methods for fr_BE locale
Update the documentation to add currently undocumented methods that are available provided by the `fr_BE` locale. Also document generic methods (e.g. city names) that have customizations for `fr_BE`
1 parent b71f04d commit 645b9ae

File tree

1 file changed

+45
-2
lines changed

1 file changed

+45
-2
lines changed

docs/locales/fr_BE.md

Lines changed: 45 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,52 @@
11
# French (Belgium)
22

3+
### `Faker\Provider\fr_BE\Address`
4+
5+
```php
6+
echo $faker->province(); // "Brabant wallon"
7+
echo $faker->cityName(); // "La Roche-en-Ardenne"
8+
```
9+
10+
### `Faker\Provider\fr_BE\Company`
11+
12+
```php
13+
echo $faker->company(); // "Timmermans SA"
14+
echo $faker->companySuffix(); // "ASBL"
15+
```
16+
17+
### `Faker\Provider\fr_BE\Internet`
18+
19+
```php
20+
echo $faker->tld(); // "be"
21+
```
22+
323
### `Faker\Provider\fr_BE\Payment`
424

525
```php
26+
// IBAN for a Belgian bank account. Will always start with "BE".
627
echo $faker->bankAccountNumber(); // "BE22800006647946"
7-
echo $faker->vat(); // "BE 0123456789" - Belgian Value Added Tax number
8-
echo $faker->vat(false); // "BE0123456789" - unspaced Belgian Value Added Tax number
28+
29+
// VAT number.
30+
echo $faker->vat(); // "BE 0123456789"
31+
32+
// Same as above but without any space between country code and number.
33+
echo $faker->vat(false); // "BE0123456789"
34+
```
35+
36+
### `Faker\Provider\fr_BE\Person`
37+
38+
```php
39+
echo $faker->firstNameFemale(); // "Marion"
40+
echo $faker->firstNameMale(); // "Maxime"
41+
42+
echo $faker->lastName(); // "Janssens"
43+
44+
echo $faker->titleFemale(); // "Dr."
45+
echo $faker->titleMale(); // "M."
46+
```
47+
48+
### `Faker\Provider\fr_BE\PhoneNumber`
49+
50+
```php
51+
echo $faker->phoneNumber(); // "+32(0)2 9398787"
952
```

0 commit comments

Comments
 (0)