1
0
mirror of https://github.com/fzaninotto/Faker.git synced 2025-03-21 15:59:52 +01:00

driverLicence && passport number

This commit is contained in:
Roman Shvets 2013-07-11 14:14:06 +03:00
parent a1a989a7cf
commit aff81d3075

View File

@ -42,6 +42,16 @@ class Person extends \Faker\Provider\Person
'Andersons', 'Kirhenšteins', 'Švarcbahs', 'Bendorfs', 'Veinbergs', 'Rozentāls', 'Neilands', 'Freidenfelds',
'Veidenbaums', 'Kronvalds',
);
public function driverLicence()
{
return $this->bothify("??######");
}
public function passportNumber()
{
return $this->bothify("??#######");
}
}