/var/www/flurhymez/vendor/fakerphp/faker/src/Faker/Provider/pt_BR
NameSizeModeActions
Address.php63490644editdlrm
check_digit.php9620644editdlrm
Company.php9540644editdlrm
Internet.php3220644editdlrm
Payment.php44610644editdlrm
Person.php105200644editdlrm
PhoneNumber.php47320644editdlrm
Text.php1583010644editdlrm
Edit: /var/www/flurhymez/vendor/fakerphp/faker/src/Faker/Provider/pt_BR/Person.php (10520B)
generator->numerify('#########'); $n .= check_digit($n); $n .= check_digit($n); return $formatted ? vsprintf('%d%d%d.%d%d%d.%d%d%d-%d%d', str_split($n)) : $n; } /** * A random RG number, following Sao Paulo state's rules. * * @see http://pt.wikipedia.org/wiki/C%C3%A9dula_de_identidade * * @param bool $formatted If the number should have dots/dashes or not. * * @return string */ public function rg($formatted = true) { $n = $this->generator->numerify('########'); $n .= check_digit($n); return $formatted ? vsprintf('%d%d.%d%d%d.%d%d%d-%s', str_split($n)) : $n; } }