%PDF- %PDF-
Direktori : /var/www/html/coding/vendor/fzaninotto/faker/src/Faker/Provider/es_VE/ |
Current File : /var/www/html/coding/vendor/fzaninotto/faker/src/Faker/Provider/es_VE/Company.php |
<?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); } }