Faker\Provider\es_VE\Person::nationalId PHP Méthode

nationalId() public méthode

Generate random national identification number including nationalized foreigns. Ex V-8756432 or E-82803827
public nationalId ( ) : string
Résultat string CNE is the official national election registry org.
    public function nationalId()
    {
        $id = static::randomElement(static::$nationalityId);
        if ($id == 'V') {
            return $id . $this->numberBetween(10000, 100000000);
        } else {
            return $id . $this->numberBetween(80000000, 100000000);
        }
    }