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 #833 from Barathel/master
Browse files Browse the repository at this point in the history
Add fa_IR PhoneNumber
  • Loading branch information
fzaninotto committed Feb 23, 2016
2 parents d8c0beb + f54645f commit 056464e
Showing 1 changed file with 46 additions and 0 deletions.
46 changes: 46 additions & 0 deletions src/Faker/Provider/fa_IR/PhoneNumber.php
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));
}
}

0 comments on commit 056464e

Please sign in to comment.