mirror of
https://github.com/fzaninotto/Faker.git
synced 2025-03-19 23:09:47 +01:00
Fix Austrian provider
This commit is contained in:
parent
9bbbed2ec6
commit
9a60f901d6
@ -160,6 +160,22 @@ class Person extends \Faker\Provider\Person
|
||||
return static::randomElement(static::$prefixMale);
|
||||
}
|
||||
|
||||
/**
|
||||
* @example 'Argus'
|
||||
*/
|
||||
public static function firstNameMale()
|
||||
{
|
||||
return static::randomElement(static::$firstNameMale);
|
||||
}
|
||||
|
||||
/**
|
||||
* @example 'Magret'
|
||||
*/
|
||||
public static function firstNameFemale()
|
||||
{
|
||||
return static::randomElement(static::$firstNameFemale);
|
||||
}
|
||||
|
||||
/**
|
||||
* @example 'Herr'
|
||||
*/
|
||||
|
Loading…
x
Reference in New Issue
Block a user