Address.php
5 years ago
Payment.php
5 years ago
Person.php
5 years ago
PhoneNumber.php
5 years ago
Text.php
5 years ago
PhoneNumber.php
34 lines
| 1 | <?php |
| 2 | |
| 3 | namespace Faker\Provider\ro_MD; |
| 4 | |
| 5 | class PhoneNumber extends \Faker\Provider\PhoneNumber |
| 6 | { |
| 7 | protected static $formats = array( |
| 8 | 'a## # ## ##', |
| 9 | '(022) ### ###', |
| 10 | '+373 60 ### ###', |
| 11 | '+373 65 0## ###', |
| 12 | '+373 67 ### ###', |
| 13 | '+373 68 ### ###', |
| 14 | '+373 69 ### ###', |
| 15 | '+373 78 ### ###', |
| 16 | '+373 79 ### ###', |
| 17 | '+373 77 4## ###', |
| 18 | '+373 77 7## ###', |
| 19 | '+373 77 8## ###', |
| 20 | '+373 77 9## ###', |
| 21 | '(373) 60 ### ###', |
| 22 | '(373) 65 0## ###', |
| 23 | '(373) 67 ### ###', |
| 24 | '(373) 68 ### ###', |
| 25 | '(373) 69 ### ###', |
| 26 | '(373) 78 ### ###', |
| 27 | '(373) 79 ### ###', |
| 28 | '(373) 77 4## ###', |
| 29 | '(373) 77 7## ###', |
| 30 | '(373) 77 8## ###', |
| 31 | '(373) 77 9## ###', |
| 32 | ); |
| 33 | } |
| 34 |