Address.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
PhoneNumber.php
21 lines
| 1 | <?php |
| 2 | |
| 3 | namespace Faker\Provider\fr_BE; |
| 4 | |
| 5 | class PhoneNumber extends \Faker\Provider\PhoneNumber |
| 6 | { |
| 7 | protected static $formats = array( |
| 8 | '+32(0)########', |
| 9 | '+32(0)### ######', |
| 10 | '+32(0)# #######', |
| 11 | '0#########', |
| 12 | '0### ######', |
| 13 | '0### ### ###', |
| 14 | '0### ## ## ##', |
| 15 | '0## ######', |
| 16 | '0## ## ## ##', |
| 17 | '0# #######', |
| 18 | '0# ### ## ##', |
| 19 | ); |
| 20 | } |
| 21 |