1
0
mirror of https://github.com/fzaninotto/Faker.git synced 2025-03-22 00:09:59 +01:00

Fix tabulations from previous commit

This commit is contained in:
Francois Zaninotto 2011-10-17 23:25:14 +02:00
parent 0ae2b06198
commit 1f4006ad5e
2 changed files with 9 additions and 10 deletions

View File

@ -58,7 +58,7 @@ class Address extends \Faker\Provider\Address
protected static $streetAddressFormats = array(
'{{buildingNumber}} {{streetName}}',
'{{buildingNumber}} {{streetName}}',
"{{secondaryAddress}}\n{{streetName}}",
"{{secondaryAddress}}\n{{streetName}}",
);
protected static $addressFormats = array(
"{{streetAddress}}\n{{city}}\n{{postcode}}",

View File

@ -8,15 +8,14 @@ class PhoneNumber extends \Faker\Provider\PhoneNumber
{
protected static $formats = array(
'+44(0)##########',
'+44(0)#### ######',
'+44(0)#########',
'+44(0)#### #####',
'+44(0)#### ######',
'+44(0)#########',
'+44(0)#### #####',
'0##########',
'0#########',
'0#### ######',
'0#### #####',
'(0####) ######',
'(0####) #####',
'0#########',
'0#### ######',
'0#### #####',
'(0####) ######',
'(0####) #####',
);
}