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
22 lines
| 1 | <?php |
| 2 | |
| 3 | namespace Faker\Provider\da_DK; |
| 4 | |
| 5 | /** |
| 6 | * @author Antoine Corcy <contact@sbin.dk> |
| 7 | */ |
| 8 | class PhoneNumber extends \Faker\Provider\PhoneNumber |
| 9 | { |
| 10 | /** |
| 11 | * @var array Danish phonenumber formats. |
| 12 | */ |
| 13 | protected static $formats = array( |
| 14 | '+45 ## ## ## ##', |
| 15 | '+45 #### ####', |
| 16 | '+45########', |
| 17 | '## ## ## ##', |
| 18 | '#### ####', |
| 19 | '########', |
| 20 | ); |
| 21 | } |
| 22 |