ar_EG
2 years ago
ar_JO
2 years ago
ar_SA
2 years ago
at_AT
2 years ago
bg_BG
2 years ago
bn_BD
2 years ago
cs_CZ
2 years ago
da_DK
2 years ago
de_AT
2 years ago
de_CH
2 years ago
de_DE
2 years ago
el_CY
2 years ago
el_GR
2 years ago
en_AU
2 years ago
en_CA
2 years ago
en_GB
2 years ago
en_HK
2 years ago
en_IN
2 years ago
en_NG
2 years ago
en_NZ
2 years ago
en_PH
2 years ago
en_SG
2 years ago
en_UG
2 years ago
en_US
2 years ago
en_ZA
2 years ago
es_AR
2 years ago
es_ES
2 years ago
es_PE
2 years ago
es_VE
2 years ago
et_EE
2 years ago
fa_IR
2 years ago
fi_FI
2 years ago
fr_BE
2 years ago
fr_CA
2 years ago
fr_CH
2 years ago
fr_FR
2 years ago
he_IL
2 years ago
hr_HR
2 years ago
hu_HU
2 years ago
hy_AM
2 years ago
id_ID
2 years ago
is_IS
2 years ago
it_CH
2 years ago
it_IT
2 years ago
ja_JP
2 years ago
ka_GE
2 years ago
kk_KZ
2 years ago
ko_KR
2 years ago
lt_LT
2 years ago
lv_LV
2 years ago
me_ME
2 years ago
mn_MN
2 years ago
ms_MY
2 years ago
nb_NO
2 years ago
ne_NP
2 years ago
nl_BE
2 years ago
nl_NL
2 years ago
pl_PL
2 years ago
pt_BR
2 years ago
pt_PT
2 years ago
ro_MD
2 years ago
ro_RO
2 years ago
ru_RU
2 years ago
sk_SK
2 years ago
sl_SI
2 years ago
sr_Cyrl_RS
2 years ago
sr_Latn_RS
2 years ago
sr_RS
2 years ago
sv_SE
2 years ago
th_TH
2 years ago
tr_TR
2 years ago
uk_UA
2 years ago
vi_VN
2 years ago
zh_CN
2 years ago
zh_TW
2 years ago
Address.php
2 years ago
Barcode.php
2 years ago
Base.php
2 years ago
Biased.php
2 years ago
Color.php
2 years ago
Company.php
2 years ago
DateTime.php
2 years ago
File.php
2 years ago
HtmlLorem.php
2 years ago
Image.php
2 years ago
Internet.php
2 years ago
Lorem.php
2 years ago
Medical.php
2 years ago
Miscellaneous.php
2 years ago
Payment.php
2 years ago
Person.php
2 years ago
PhoneNumber.php
2 years ago
Text.php
2 years ago
UserAgent.php
2 years ago
Uuid.php
2 years ago
Person.php
154 lines
| 1 | <?php |
| 2 | /** |
| 3 | * @license MIT |
| 4 | * |
| 5 | * Modified by impress-org on 23-January-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 |