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