Blame | Letzte Änderung | Log anzeigen | RSS feed
<?phpnamespace Faker\Provider\hy_AM;class Company extends \Faker\Provider\Company{protected static $formats = ['{{lastName}} {{companySuffix}}','{{lastName}} {{companySuffix}}','{{lastName}} {{companySuffix}}','{{lastName}} {{companySuffix}}','{{lastName}} {{companySuffix}}','{{lastName}} {{companySuffix}}','{{lastName}} {{companySuffix}}','{{lastName}} {{companySuffix}}','{{lastName}} Õ¥Õ²Õ¢Õ¡ÕµÖ€Õ¶Õ¥Ö€',];protected static $catchPhraseWords = [];protected static $bsWords = [];protected static $companySuffix = ['ÕÕŠÔ¸', 'Ö‡ Õ¸Ö€Õ¤Õ«Õ¶Õ¥Ö€', 'Õ“Ô²Ô¸', 'Ô²Ô²Ô¸'];/*** @example 'Robust full-range hub'*/public function catchPhrase(){$result = [];foreach (static::$catchPhraseWords as &$word) {$result[] = static::randomElement($word);}return implode(' ', $result);}/*** @example 'integrate extensible convergence'*/public function bs(){$result = [];foreach (static::$bsWords as &$word) {$result[] = static::randomElement($word);}return implode(' ', $result);}}