|
1
|
<?php |
|
2
|
|
|
3
|
namespace Faker\Provider\nl_NL; |
|
4
|
|
|
5
|
class Internet extends \Faker\Provider\Internet |
|
6
|
{ |
|
7
|
protected static $freeEmailDomain = array('gmail.com', 'hotmail.nl', 'live.nl', 'yahoo.nl'); |
|
8
|
protected static $tld = array('com', 'com', 'com', 'net', 'org', 'nl', 'nl', 'nl'); |
|
9
|
} |
|
10
|
|