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
18 lines
| 1 | <?php |
| 2 | |
| 3 | namespace Faker\Provider\de_CH; |
| 4 | |
| 5 | class Internet extends \Faker\Provider\Internet |
| 6 | { |
| 7 | protected static $freeEmailDomain = array( |
| 8 | 'gmail.com', |
| 9 | 'hotmail.com', |
| 10 | 'yahoo.com', |
| 11 | 'googlemail.com', |
| 12 | 'gmx.ch', |
| 13 | 'bluewin.ch', |
| 14 | 'swissonline.ch' |
| 15 | ); |
| 16 | protected static $tld = array('com', 'com', 'com', 'net', 'org', 'li', 'ch', 'ch'); |
| 17 | } |
| 18 |