/home/techb158/ileadtechnology.com/vendor/fzaninotto/faker/src/Faker/Provider/pt_BR
NameSizeModeActions
Address.php64220644editdlrm
check_digit.php9230644editdlrm
Company.php9420644editdlrm
Internet.php3320644editdlrm
Payment.php44960644editdlrm
Person.php73490644editdlrm
PhoneNumber.php47460644editdlrm
Edit: /home/techb158/ileadtechnology.com/vendor/fzaninotto/faker/src/Faker/Provider/pt_BR/Person.php (7349B)
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. * @link 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; } }