/home/techb158/dev.balacoffee.com/vendor/fzaninotto/faker/src/Faker/Provider/ru_RU
NameSizeModeActions
Address.php111080644editdlrm
Color.php19580644editdlrm
Company.php132140644editdlrm
Internet.php3450644editdlrm
Payment.php320540644editdlrm
Person.php125260644editdlrm
PhoneNumber.php2790644editdlrm
Text.php3912740644editdlrm
Edit: /home/techb158/dev.balacoffee.com/vendor/fzaninotto/faker/src/Faker/Provider/ru_RU/Person.php (12526B)
middleNameMale(); } elseif ($gender === static::GENDER_FEMALE) { return $this->middleNameFemale(); } return $this->middleName(static::randomElement(array( static::GENDER_MALE, static::GENDER_FEMALE, ))); } /** * Return last name for the specified gender. * * @param string|null $gender A gender of the last name should be generated * for. If the argument is skipped a random gender will be used. * @return string Last name */ public function lastName($gender = null) { $lastName = static::randomElement(static::$lastName); if (static::GENDER_FEMALE === $gender) { return $lastName . 'а'; } elseif (static::GENDER_MALE === $gender) { return $lastName; } return $lastName . static::randomElement(static::$lastNameSuffix); } }