Файл: src/vendor/fzaninotto/faker/src/Faker/Provider/zh_CN/Internet.php
Строк: 11
<?php
namespace FakerProviderzh_CN;
class Internet extends FakerProviderInternet
{
protected static $freeEmailDomain = array('gmail.com', 'yahoo.com', 'hotmail.com');
protected static $tld = array('com', 'com', 'com', 'com', 'com', 'com', 'biz', 'info', 'net', 'org');
protected static $userNameFormats = array(
'{{word}}.{{word}}',
'{{word}}_{{word}}',
'{{word}}##',
'?{{word}}',
);
protected static $emailFormats = array(
'{{userName}}@{{freeEmailDomain}}',
);
}