ar_EG
1 year ago
ar_JO
1 year ago
ar_SA
1 year ago
at_AT
1 year ago
bg_BG
1 year ago
bn_BD
1 year ago
cs_CZ
1 year ago
da_DK
1 year ago
de_AT
1 year ago
de_CH
1 year ago
de_DE
1 year ago
el_CY
1 year ago
el_GR
1 year ago
en_AU
1 year ago
en_CA
1 year ago
en_GB
1 year ago
en_HK
1 year ago
en_IN
1 year ago
en_NG
1 year ago
en_NZ
1 year ago
en_PH
1 year ago
en_SG
1 year ago
en_UG
1 year ago
en_US
1 year ago
en_ZA
1 year ago
es_AR
1 year ago
es_ES
1 year ago
es_PE
1 year ago
es_VE
1 year ago
et_EE
1 year ago
fa_IR
1 year ago
fi_FI
1 year ago
fr_BE
1 year ago
fr_CA
1 year ago
fr_CH
1 year ago
fr_FR
1 year ago
he_IL
1 year ago
hr_HR
1 year ago
hu_HU
1 year ago
hy_AM
1 year ago
id_ID
1 year ago
is_IS
1 year ago
it_CH
1 year ago
it_IT
1 year ago
ja_JP
1 year ago
ka_GE
1 year ago
kk_KZ
1 year ago
ko_KR
1 year ago
lt_LT
1 year ago
lv_LV
1 year ago
me_ME
1 year ago
mn_MN
1 year ago
ms_MY
1 year ago
nb_NO
1 year ago
ne_NP
1 year ago
nl_BE
1 year ago
nl_NL
1 year ago
pl_PL
1 year ago
pt_BR
1 year ago
pt_PT
1 year ago
ro_MD
1 year ago
ro_RO
1 year ago
ru_RU
1 year ago
sk_SK
1 year ago
sl_SI
1 year ago
sr_Cyrl_RS
1 year ago
sr_Latn_RS
1 year ago
sr_RS
1 year ago
sv_SE
1 year ago
th_TH
1 year ago
tr_TR
1 year ago
uk_UA
1 year ago
vi_VN
1 year ago
zh_CN
1 year ago
zh_TW
1 year ago
Address.php
1 year ago
Barcode.php
1 year ago
Base.php
1 year ago
Biased.php
1 year ago
Color.php
1 year ago
Company.php
1 year ago
DateTime.php
1 year ago
File.php
1 year ago
HtmlLorem.php
1 year ago
Image.php
1 year ago
Internet.php
1 year ago
Lorem.php
1 year ago
Medical.php
1 year ago
Miscellaneous.php
1 year ago
Payment.php
1 year ago
Person.php
1 year ago
PhoneNumber.php
1 year ago
Text.php
1 year ago
UserAgent.php
1 year ago
Uuid.php
1 year ago
Person.php
154 lines
| 1 | <?php |
| 2 | /** |
| 3 | * @license MIT |
| 4 | * |
| 5 | * Modified by impress-org on 07-August-2024 using Strauss. |
| 6 | * @see https://github.com/BrianHenryIE/strauss |
| 7 | */ |
| 8 | |
| 9 | namespace Give\Vendors\Faker\Provider; |
| 10 | |
| 11 | class Person extends Base |
| 12 | { |
| 13 | public const GENDER_MALE = 'male'; |
| 14 | public const GENDER_FEMALE = 'female'; |
| 15 | |
| 16 | protected static $titleFormat = [ |
| 17 | '{{titleMale}}', |
| 18 | '{{titleFemale}}', |
| 19 | ]; |
| 20 | |
| 21 | protected static $firstNameFormat = [ |
| 22 | '{{firstNameMale}}', |
| 23 | '{{firstNameFemale}}', |
| 24 | ]; |
| 25 | |
| 26 | protected static $maleNameFormats = [ |
| 27 | '{{firstNameMale}} {{lastName}}', |
| 28 | ]; |
| 29 | |
| 30 | protected static $femaleNameFormats = [ |
| 31 | '{{firstNameFemale}} {{lastName}}', |
| 32 | ]; |
| 33 | |
| 34 | protected static $firstNameMale = [ |
| 35 | 'John', |
| 36 | ]; |
| 37 | |
| 38 | protected static $firstNameFemale = [ |
| 39 | 'Jane', |
| 40 | ]; |
| 41 | |
| 42 | protected static $lastName = ['Doe']; |
| 43 | |
| 44 | protected static $titleMale = ['Mr.', 'Dr.', 'Prof.']; |
| 45 | |
| 46 | protected static $titleFemale = ['Mrs.', 'Ms.', 'Miss', 'Dr.', 'Prof.']; |
| 47 | |
| 48 | /** |
| 49 | * @param string|null $gender 'male', 'female' or null for any |
| 50 | * |
| 51 | * @return string |
| 52 | * |
| 53 | * @example 'John Doe' |
| 54 | */ |
| 55 | public function name($gender = null) |
| 56 | { |
| 57 | if ($gender === static::GENDER_MALE) { |
| 58 | $format = static::randomElement(static::$maleNameFormats); |
| 59 | } elseif ($gender === static::GENDER_FEMALE) { |
| 60 | $format = static::randomElement(static::$femaleNameFormats); |
| 61 | } else { |
| 62 | $format = static::randomElement(array_merge(static::$maleNameFormats, static::$femaleNameFormats)); |
| 63 | } |
| 64 | |
| 65 | return $this->generator->parse($format); |
| 66 | } |
| 67 | |
| 68 | /** |
| 69 | * @param string|null $gender 'male', 'female' or null for any |
| 70 | * |
| 71 | * @return string |
| 72 | * |
| 73 | * @example 'John' |
| 74 | */ |
| 75 | public function firstName($gender = null) |
| 76 | { |
| 77 | if ($gender === static::GENDER_MALE) { |
| 78 | return static::firstNameMale(); |
| 79 | } |
| 80 | |
| 81 | if ($gender === static::GENDER_FEMALE) { |
| 82 | return static::firstNameFemale(); |
| 83 | } |
| 84 | |
| 85 | return $this->generator->parse(static::randomElement(static::$firstNameFormat)); |
| 86 | } |
| 87 | |
| 88 | /** |
| 89 | * @return string |
| 90 | */ |
| 91 | public static function firstNameMale() |
| 92 | { |
| 93 | return static::randomElement(static::$firstNameMale); |
| 94 | } |
| 95 | |
| 96 | /** |
| 97 | * @return string |
| 98 | */ |
| 99 | public static function firstNameFemale() |
| 100 | { |
| 101 | return static::randomElement(static::$firstNameFemale); |
| 102 | } |
| 103 | |
| 104 | /** |
| 105 | * @example 'Doe' |
| 106 | * |
| 107 | * @return string |
| 108 | */ |
| 109 | public function lastName() |
| 110 | { |
| 111 | return static::randomElement(static::$lastName); |
| 112 | } |
| 113 | |
| 114 | /** |
| 115 | * @example 'Mrs.' |
| 116 | * |
| 117 | * @param string|null $gender 'male', 'female' or null for any |
| 118 | * |
| 119 | * @return string |
| 120 | */ |
| 121 | public function title($gender = null) |
| 122 | { |
| 123 | if ($gender === static::GENDER_MALE) { |
| 124 | return static::titleMale(); |
| 125 | } |
| 126 | |
| 127 | if ($gender === static::GENDER_FEMALE) { |
| 128 | return static::titleFemale(); |
| 129 | } |
| 130 | |
| 131 | return $this->generator->parse(static::randomElement(static::$titleFormat)); |
| 132 | } |
| 133 | |
| 134 | /** |
| 135 | * @example 'Mr.' |
| 136 | * |
| 137 | * @return string |
| 138 | */ |
| 139 | public static function titleMale() |
| 140 | { |
| 141 | return static::randomElement(static::$titleMale); |
| 142 | } |
| 143 | |
| 144 | /** |
| 145 | * @example 'Mrs.' |
| 146 | * |
| 147 | * @return string |
| 148 | */ |
| 149 | public static function titleFemale() |
| 150 | { |
| 151 | return static::randomElement(static::$titleFemale); |
| 152 | } |
| 153 | } |
| 154 |