Address.php
5 years ago
Color.php
5 years ago
Company.php
5 years ago
Internet.php
5 years ago
Person.php
5 years ago
PhoneNumber.php
5 years ago
Internet.php
26 lines
| 1 | <?php |
| 2 | |
| 3 | namespace Faker\Provider\id_ID; |
| 4 | |
| 5 | class Internet extends \Faker\Provider\Internet |
| 6 | { |
| 7 | /** |
| 8 | * @var array some email domains |
| 9 | */ |
| 10 | protected static $freeEmailDomain = array( |
| 11 | 'gmail.com', 'yahoo.com', 'gmail.co.id', 'yahoo.co.id', |
| 12 | ); |
| 13 | |
| 14 | /** |
| 15 | * General tld and local tld |
| 16 | * |
| 17 | * @link http://idwebhost.com/ |
| 18 | * @link http://domain.id/ |
| 19 | */ |
| 20 | protected static $tld = array( |
| 21 | 'com', 'net', 'org', 'asia', 'tv', 'biz', 'info', 'in', 'name', 'co', |
| 22 | 'ac.id', 'sch.id', 'go.id', 'mil.id', 'co.id', 'or.id', 'web.id', |
| 23 | 'my.id', 'biz.id', 'desa.id', 'id', |
| 24 | ); |
| 25 | } |
| 26 |