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
20 lines
| 1 | <?php |
| 2 | |
| 3 | namespace Faker\Provider\de_AT; |
| 4 | |
| 5 | class PhoneNumber extends \Faker\Provider\PhoneNumber |
| 6 | { |
| 7 | protected static $formats = array( |
| 8 | '0650 #######', |
| 9 | '0660 #######', |
| 10 | '0664 #######', |
| 11 | '0676 #######', |
| 12 | '0677 #######', |
| 13 | '0678 #######', |
| 14 | '0699 #######', |
| 15 | '0680 #######', |
| 16 | '+43 #### ####', |
| 17 | '+43 #### ####-##', |
| 18 | ); |
| 19 | } |
| 20 |