generator->parse($format); } /** * @example 'Ltd' */ public static function companySuffix() { return static::randomElement(static::$companySuffix); } /** * @example 'Job' */ public function jobTitle() { $format = static::randomElement(static::$jobTitleFormat); return $this->generator->parse($format); } }