1
0
mirror of https://github.com/fzaninotto/Faker.git synced 2025-03-23 00:39:47 +01:00

added Emails and TLD

This commit is contained in:
Emanuele Minotto 2013-01-09 08:38:39 +01:00
parent 140b5d4d3f
commit 5d21a9e039

View File

@ -0,0 +1,10 @@
<?php
namespace Faker\Provider\it_IT;
class Internet extends \Faker\Provider\Internet
{
protected static $safeEmailTld = array('org', 'com', 'net', 'it');
protected static $freeEmailDomain = array('gmail.com', 'yahoo.com', 'hotmail.com', 'email.it', 'libero.it', 'yahoo.it');
protected static $tld = array('com', 'com', 'com', 'net', 'org', 'it', 'it', 'it');
}