%PDF- %PDF-
Direktori : /var/www/html/workeasy-api/vendor/fzaninotto/faker/src/Faker/Provider/fr_FR/ |
Current File : //var/www/html/workeasy-api/vendor/fzaninotto/faker/src/Faker/Provider/fr_FR/Internet.php |
<?php namespace Faker\Provider\fr_FR; class Internet extends \Faker\Provider\Internet { protected static $freeEmailDomain = array('voila.fr', 'gmail.com', 'hotmail.fr', 'yahoo.fr', 'laposte.net', 'free.fr', 'sfr.fr', 'orange.fr', 'bouygtel.fr', 'club-internet.fr', 'dbmail.com', 'live.com', 'ifrance.com', 'noos.fr', 'tele2.fr', 'tiscali.fr', 'wanadoo.fr'); protected static $tld = array('com', 'com', 'com', 'net', 'org', 'fr', 'fr', 'fr'); /** * Converts French characters to their ASCII representation * * @return string */ private static function toAscii($string) { $from = array('à', 'À', 'ç', 'Ç', 'é', 'É', 'è', 'È', 'ë', 'Ë', 'ï', 'Ï', 'î', 'Î', 'ô', 'Ô', 'ù', 'Ù'); $to = array('a', 'A', 'c', 'c', 'e', 'E', 'e', 'E', 'e', 'E', 'i', 'I', 'i', 'I', 'o', 'O', 'u', 'U'); 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)); } }