File tree Expand file tree Collapse file tree 7 files changed +59
-4
lines changed Expand file tree Collapse file tree 7 files changed +59
-4
lines changed Original file line number Diff line number Diff line change 3
3
### ` Faker\Provider\en_GB\Address `
4
4
5
5
``` php
6
- echo $faker->secondaryAddress; // ' Flat 13'
7
- echo $faker->county; // 'Hampshire'
6
+ echo $faker->secondaryAddress; // " Flat 13"
7
+ echo $faker->county; // 'Hampshire'
8
8
```
9
9
10
10
### ` Faker\Provider\en_GB\Payment `
@@ -13,5 +13,11 @@ echo $faker->county; // 'Hampshire'
13
13
echo $faker->bankAccountNumber; // "GB28MLRJ42074399970100"
14
14
15
15
// Generates a random National Insurance number.
16
- echo $faker->nino; // 'TY179309C'
16
+ echo $faker->nino; // "TY179309C"
17
+ ```
18
+
19
+ ### ` Faker\Provider\en_GB\PhoneNumber `
20
+
21
+ ``` php
22
+ echo $faker->mobileNumber; // "07720324489"
17
23
```
Original file line number Diff line number Diff line change
1
+ # English (India)
2
+
3
+ ### ` Faker\Provider\en_IN\Address `
4
+
5
+ ``` php
6
+ echo $faker->locality; // "Vaishali Nagar"
7
+ echo $faker->localityName; // "Kharadi"
8
+ echo $faker->societyName; // "Shanti Apartments"
9
+ echo $faker->state; // "Delhi"
10
+ echo $faker->stateAbbr; // "DL"
11
+ ```
12
+
13
+ ### ` Faker\Provider\en_IN\PhoneNumber `
14
+
15
+ ``` php
16
+ echo $faker->mobileNumber; // "09007086397"
17
+ ```
Original file line number Diff line number Diff line change 3
3
### ` Faker\Provider\en_NG\Address `
4
4
5
5
``` php
6
- // Generates a random region name
6
+ echo $faker->county; // 'Edo'
7
7
echo $faker->region; // 'Katsina'
8
8
```
9
9
Original file line number Diff line number Diff line change 1
1
# English (New Zealand)
2
2
3
+ ### ` Faker\Provider\en_NZ\Address `
4
+
5
+ ``` php
6
+ echo $faker->region; // "Auckland"
7
+ ```
8
+
3
9
### ` Faker\Provider\en_NZ\Phone `
4
10
5
11
``` php
Original file line number Diff line number Diff line change
1
+ # English (Philippines)
2
+
3
+ ### ` Faker\Provider\en_PH\Address `
4
+
5
+ ``` php
6
+ echo $faker->province; // "Marinduque"
7
+ echo $faker->municipality; // "Lacub"
8
+ echo $faker->barangay; // "Poblacion"
9
+ ```
10
+
11
+ ### ` Faker\Provider\en_PH\Phone `
12
+
13
+ ``` php
14
+ // Generates a cell (mobile) phone number
15
+ echo $faker->mobileNumber; // "+63 (933) 384-1558"
16
+ ```
Original file line number Diff line number Diff line change @@ -31,4 +31,6 @@ echo $faker->premiumPhoneNumber; // "1900 219 6547"
31
31
echo $faker->mobileNumber; // "9207 0603"
32
32
33
33
echo $faker->fixedLineNumber; // "6752 8659"
34
+
35
+ echo $faker->voipNumber; // "3384 1228
34
36
```
Original file line number Diff line number Diff line change
1
+ # English (Uganda)
2
+
3
+ ### ` Faker\Provider\en_UG\Address `
4
+
5
+ ``` php
6
+ echo $faker->district; // "Kabarole"
7
+ echo $faker->region; // "North"
8
+ ```
You can’t perform that action at this time.
0 commit comments