This repository has been archived by the owner on Dec 11, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #833 from Barathel/master
Add fa_IR PhoneNumber
- Loading branch information
Showing
1 changed file
with
46 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
<?php | ||
|
||
namespace Faker\Provider\fa_IR; | ||
|
||
class PhoneNumber extends \Faker\Provider\PhoneNumber | ||
{ | ||
/** | ||
* @link https://fa.wikipedia.org/wiki/%D8%B4%D9%85%D8%A7%D8%B1%D9%87%E2%80%8C%D9%87%D8%A7%DB%8C_%D8%AA%D9%84%D9%81%D9%86_%D8%AF%D8%B1_%D8%A7%DB%8C%D8%B1%D8%A7%D9%86#.D8.AA.D9.84.D9.81.D9.86.E2.80.8C.D9.87.D8.A7.DB.8C_.D9.87.D9.85.D8.B1.D8.A7.D9.87 | ||
*/ | ||
protected static $formats = array( | ||
'021#######', | ||
'026#######', | ||
'031#######', | ||
); | ||
protected static $mobileNumberPrefixes = array( | ||
'0910#######',//mci | ||
'0911#######', | ||
'0912#######', | ||
'0913#######', | ||
'0914#######', | ||
'0915#######', | ||
'0916#######', | ||
'0917#######', | ||
'0918#######', | ||
'0919#######', | ||
'0901#######', | ||
'0901#######', | ||
'0902#######', | ||
'0903#######', | ||
'0930#######', | ||
'0933#######', | ||
'0935#######', | ||
'0936#######', | ||
'0937#######', | ||
'0938#######', | ||
'0939#######', | ||
'0920#######', | ||
'0921#######', | ||
'0937#######', | ||
'0937#######', | ||
); | ||
public static function mobileNumber() | ||
{ | ||
return static::numerify(static::randomElement(static::$mobileNumberPrefixes)); | ||
} | ||
} |