Address.php
5 years ago
Color.php
5 years ago
Company.php
5 years ago
Internet.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
40 lines
| 1 | <?php |
| 2 | |
| 3 | namespace Faker\Provider\nl_NL; |
| 4 | |
| 5 | class PhoneNumber extends \Faker\Provider\PhoneNumber |
| 6 | { |
| 7 | protected static $formats = array( |
| 8 | '06 ########', |
| 9 | '06-########', |
| 10 | '+316-########', |
| 11 | '+31(0)6-########', |
| 12 | '+316 ########', |
| 13 | '+31(0)6 ########', |
| 14 | '01# #######', |
| 15 | '(01#) #######', |
| 16 | '+311# #######', |
| 17 | '02# #######', |
| 18 | '(02#) #######', |
| 19 | '+312# #######', |
| 20 | '03# #######', |
| 21 | '(03#) #######', |
| 22 | '+313# #######', |
| 23 | '04# #######', |
| 24 | '(04#) #######', |
| 25 | '+314# #######', |
| 26 | '05# #######', |
| 27 | '(05#) #######', |
| 28 | '+315# #######', |
| 29 | '07# #######', |
| 30 | '(07#) #######', |
| 31 | '+317# #######', |
| 32 | '0800 ######', |
| 33 | '+31800 ######', |
| 34 | '088 #######', |
| 35 | '+3188 #######', |
| 36 | '0900 ######', |
| 37 | '+31900 ######', |
| 38 | ); |
| 39 | } |
| 40 |