<?php namespace Faker\Provider\es_VE; class Company extends \Faker\Provider\Company { protected static $formats = array( '{{companyPrefix}} {{lastName}} {{companySuffix}}', '{{companyPrefix}} {{lastName}}', '{{companyPrefix}} {{lastName}} y {{lastName}}', '{{lastName}} y {{lastName}} {{companySuffix}}', '{{lastName}} de {{lastName}} {{companySuffix}}', '{{lastName}} y {{lastName}}', '{{lastName}} de {{lastName}}' ); protected static $companyPrefix = array( 'AsociaciĆ³n', 'Centro', 'CorporaciĆ³n', 'Cooperativa', 'Empresa', 'Gestora', 'Global', 'Grupo', 'Viajes', 'Inversiones', 'Lic.', 'Dr.' ); protected static $companySuffix = array('S.R.L.', 'C.A.', 'S.A.', 'R.L.', 'etc'); /** * @example 'Grupo' */ public static function companyPrefix() { return static::randomElement(static::$companyPrefix); } }