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
Internet.php
27 lines
| 1 | <?php |
| 2 | |
| 3 | namespace Faker\Provider\de_DE; |
| 4 | |
| 5 | class Internet extends \Faker\Provider\Internet |
| 6 | { |
| 7 | /** |
| 8 | * @link https://www.statista.com/statistics/446418/most-popular-e-mail-providers-germany/ |
| 9 | * @link http://blog.shuttlecloud.com/the-10-most-popular-email-providers-in-germany |
| 10 | */ |
| 11 | protected static $freeEmailDomain = array( |
| 12 | 'web.de', |
| 13 | 'gmail.com', |
| 14 | 'hotmail.de', |
| 15 | 'yahoo.de', |
| 16 | 'googlemail.com', |
| 17 | 'aol.de', |
| 18 | 'gmx.de', |
| 19 | 'freenet.de', |
| 20 | 'posteo.de', |
| 21 | 'mail.de', |
| 22 | 'live.de', |
| 23 | 't-online.de' |
| 24 | ); |
| 25 | protected static $tld = array('com', 'com', 'com', 'net', 'org', 'de', 'de', 'de'); |
| 26 | } |
| 27 |