![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/dceprojects.corals.io/vendor/fzaninotto/faker/src/Faker/Provider/id_ID/ |
<?php namespace Faker\Provider\id_ID; class Company extends \Faker\Provider\Company { protected static $formats = array( '{{companyPrefix}} {{lastName}}', '{{companyPrefix}} {{lastName}} {{lastName}}', '{{companyPrefix}} {{lastName}} {{companySuffix}}', '{{companyPrefix}} {{lastName}} {{lastName}} {{companySuffix}}', ); /** * @link http://id.wikipedia.org/wiki/Jenis_badan_usaha */ protected static $companyPrefix = array('PT', 'CV', 'UD', 'PD', 'Perum'); /** * @link http://id.wikipedia.org/wiki/Jenis_badan_usaha */ protected static $companySuffix = array('(Persero) Tbk', 'Tbk'); /** * Get company prefix * * @return string company prefix */ public static function companyPrefix() { return static::randomElement(static::$companyPrefix); } /** * Get company suffix * * @return string company suffix */ public static function companySuffix() { return static::randomElement(static::$companySuffix); } }