%PDF- %PDF-
Direktori : /var/www/html/workeasy-api/vendor/fzaninotto/faker/src/Faker/Provider/de_DE/ |
Current File : //var/www/html/workeasy-api/vendor/fzaninotto/faker/src/Faker/Provider/de_DE/Internet.php |
<?php namespace Faker\Provider\de_DE; class Internet extends \Faker\Provider\Internet { protected static $freeEmailDomain = array('web.de', 'gmail.com', 'hotmail.de', 'yahoo.de', 'googlemail.com', 'aol.de', 'gmx.de'); protected static $tld = array('com', 'com', 'com', 'net', 'org', 'de', 'de', 'de'); /** * Converts French characters to their ASCII representation * * @return string */ private static function toAscii($string) { $from = array('ä', 'Ä', 'ü', 'Ü', 'ö', 'Ö', 'ß'); $to = array('a', 'A', 'u', 'U', 'o', 'O', 'ss'); return str_replace($from, $to, $string); } /** * @example 'jdoe' */ public function userName() { $format = static::randomElement(static::$userNameFormats); return static::toLower(static::toAscii(static::bothify($this->generator->parse($format)))); } /** * @example 'faber' */ public function domainWord() { $company = $this->generator->format('company'); $companyElements = explode(' ', $company); $company = $companyElements[0]; $company = preg_replace('/\W/u', '', $company); return static::toLower(static::toAscii($company)); } }