Subiendo proyecto completo sin restricciones de git ignore
This commit is contained in:
50
vendor/fakerphp/faker/src/Faker/Provider/Company.php
vendored
Normal file
50
vendor/fakerphp/faker/src/Faker/Provider/Company.php
vendored
Normal file
@@ -0,0 +1,50 @@
|
||||
<?php
|
||||
|
||||
namespace Faker\Provider;
|
||||
|
||||
class Company extends Base
|
||||
{
|
||||
protected static $formats = [
|
||||
'{{lastName}} {{companySuffix}}',
|
||||
];
|
||||
|
||||
protected static $companySuffix = ['Ltd'];
|
||||
|
||||
protected static $jobTitleFormat = [
|
||||
'{{word}}',
|
||||
];
|
||||
|
||||
/**
|
||||
* @example 'Acme Ltd'
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
public function company()
|
||||
{
|
||||
$format = static::randomElement(static::$formats);
|
||||
|
||||
return $this->generator->parse($format);
|
||||
}
|
||||
|
||||
/**
|
||||
* @example 'Ltd'
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
public static function companySuffix()
|
||||
{
|
||||
return static::randomElement(static::$companySuffix);
|
||||
}
|
||||
|
||||
/**
|
||||
* @example 'Job'
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
public function jobTitle()
|
||||
{
|
||||
$format = static::randomElement(static::$jobTitleFormat);
|
||||
|
||||
return $this->generator->parse($format);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user