Address.php
5 years ago
Company.php
5 years ago
Internet.php
5 years ago
Person.php
5 years ago
PhoneNumber.php
5 years ago
PhoneNumber.php
30 lines
| 1 | <?php |
| 2 | |
| 3 | namespace Faker\Provider\es_VE; |
| 4 | |
| 5 | class PhoneNumber extends \Faker\Provider\PhoneNumber |
| 6 | { |
| 7 | protected static $formats = array( |
| 8 | '+58 2## ### ####', |
| 9 | '+58 2## #######', |
| 10 | '+58 2#########', |
| 11 | '+58 2##-###-####', |
| 12 | '+58 2##-#######', |
| 13 | '2## ### ####', |
| 14 | '2## #######', |
| 15 | '2#########', |
| 16 | '2##-###-####', |
| 17 | '2##-#######', |
| 18 | '+58 4## ### ####', |
| 19 | '+58 4## #######', |
| 20 | '+58 4#########', |
| 21 | '+58 4##-###-####', |
| 22 | '+58 4##-#######', |
| 23 | '4## ### ####', |
| 24 | '4## #######', |
| 25 | '4#########', |
| 26 | '4##-###-####', |
| 27 | '4##-#######', |
| 28 | ); |
| 29 | } |
| 30 |