Skip to content
This repository has been archived by the owner on Dec 11, 2020. It is now read-only.

Commit

Permalink
Merge pull request #1046 from fzaninotto/fix_french_phone_number_07
Browse files Browse the repository at this point in the history
Fix French phone numbers with 07 prefix
  • Loading branch information
fzaninotto authored Oct 7, 2016
2 parents 30ed920 + caa84a7 commit 130bb84
Showing 1 changed file with 24 additions and 5 deletions.
29 changes: 24 additions & 5 deletions src/Faker/Provider/fr_FR/PhoneNumber.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class PhoneNumber extends \Faker\Provider\PhoneNumber
'+33 (0)4 ## ## ## ##',
'+33 (0)5 ## ## ## ##',
'+33 (0)6 ## ## ## ##',
'+33 (0)7 ## ## ## ##',
'+33 (0)7 {{phoneNumber07WithSeparator}}',
'+33 (0)8 ## ## ## ##',
'+33 (0)9 ## ## ## ##',
'+33 1 ## ## ## ##',
Expand All @@ -24,7 +24,7 @@ class PhoneNumber extends \Faker\Provider\PhoneNumber
'+33 4 ## ## ## ##',
'+33 5 ## ## ## ##',
'+33 6 ## ## ## ##',
'+33 7 ## ## ## ##',
'+33 7 {{phoneNumber07WithSeparator}}',
'+33 8 ## ## ## ##',
'+33 9 ## ## ## ##',
'01########',
Expand All @@ -34,7 +34,7 @@ class PhoneNumber extends \Faker\Provider\PhoneNumber
'04########',
'05########',
'06########',
'07########',
'07{{phoneNumber07}}',
'08########',
'09########',
'01 ## ## ## ##',
Expand All @@ -44,7 +44,7 @@ class PhoneNumber extends \Faker\Provider\PhoneNumber
'04 ## ## ## ##',
'05 ## ## ## ##',
'06 ## ## ## ##',
'07 ## ## ## ##',
'07 {{phoneNumber07WithSeparator}}',
'08 ## ## ## ##',
'09 ## ## ## ##',
);
Expand All @@ -53,13 +53,32 @@ class PhoneNumber extends \Faker\Provider\PhoneNumber
// 06 is the most common prefix
protected static $mobileFormats = array(
'+33 6 ## ## ## ##',
'+33 7 ## ## ## ##',
'+33 7 {{phoneNumber07WithSeparator}}',
'06########',
'07########',
'06 ## ## ## ##',
'07 ## ## ## ##',
);

public function phoneNumber07()
{
$phoneNumber = $this->phoneNumber07WithSeparator();
$phoneNumber = str_replace(' ', '', $phoneNumber);
return $phoneNumber;
}

/**
* Only 073 to 079 are acceptable prefixes with 07
*
* @see http://www.arcep.fr/index.php?id=8146
*/
public function phoneNumber07WithSeparator()
{
$phoneNumber = $this->generator->numberBetween(3, 9);
$phoneNumber .= $this->numerify('# ## ## ##');
return $phoneNumber;
}

/**
* @example '0601020304'
*/
Expand Down

0 comments on commit 130bb84

Please sign in to comment.