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
Internet.php
19 lines
| 1 | <?php |
| 2 | |
| 3 | namespace Faker\Provider\lt_LT; |
| 4 | |
| 5 | class Internet extends \Faker\Provider\Internet |
| 6 | { |
| 7 | protected static $userNameFormats = array( |
| 8 | '{{lastNameMale}}.{{firstNameMale}}', |
| 9 | '{{lastNameFemale}}.{{firstNameFemale}}', |
| 10 | '{{firstNameMale}}##', |
| 11 | '{{firstNameFemale}}##', |
| 12 | '?{{lastNameFemale}}', |
| 13 | '?{{lastNameMale}}', |
| 14 | ); |
| 15 | |
| 16 | protected static $freeEmailDomain = array('gmail.com', 'yahoo.com', 'hotmail.com'); |
| 17 | protected static $tld = array('com', 'com', 'net', 'org', 'lt', 'lt', 'lt', 'lt', 'lt'); |
| 18 | } |
| 19 |