/var/www/cobraambalaj/vendor/fakerphp/faker/src/Faker/Provider/ru_RU
NameSizeModeActions
Address.php110490644editdlrm
Color.php19480644editdlrm
Company.php131850644editdlrm
Internet.php3350644editdlrm
Payment.php320490644editdlrm
Person.php124810644editdlrm
PhoneNumber.php2740644editdlrm
Text.php3893420644editdlrm
Edit: /var/www/cobraambalaj/vendor/fakerphp/faker/src/Faker/Provider/ru_RU/Person.php (12481B)
middleNameMale(); } elseif ($gender === static::GENDER_FEMALE) { return $this->middleNameFemale(); } return $this->middleName(static::randomElement([ 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); } }