diff --git a/src/Faker/Provider/ro_RO/Person.php b/src/Faker/Provider/ro_RO/Person.php new file mode 100644 index 00000000..8c6ed61d --- /dev/null +++ b/src/Faker/Provider/ro_RO/Person.php @@ -0,0 +1,113 @@ +generator->parse($format); + } + + /** + * @example 'Ion' + */ + public static function firstNameMale() + { + return static::randomElement(static::$firstNameMale); + } + + /** + * @example 'Maria' + */ + public static function firstNameFemale() + { + return static::randomElement(static::$firstNameFemale); + } + + /** + * @example 'Popescu' + */ + public static function lastName() + { + return static::randomElement(static::$lastName); + } + + public static function prefixMale() + { + return static::randomElement(static::$prefixMale); + } + + public static function prefixFemale() + { + return static::randomElement(static::$prefixFemale); + } +}