/var/www/flurhymez/vendor/fakerphp/faker/src/Faker/Provider/tr_TR
NameSizeModeActions
Address.php37220644editdlrm
Color.php37880644editdlrm
Company.php68980644editdlrm
DateTime.php12590644editdlrm
Internet.php3720644editdlrm
Payment.php6820644editdlrm
Person.php65290644editdlrm
PhoneNumber.php7950644editdlrm
Edit: /var/www/flurhymez/vendor/fakerphp/faker/src/Faker/Provider/tr_TR/Person.php (6529B)
$digit) { if ($index % 2 === 0) { $evenSum += $digit; } else { $oddSum += $digit; } } $tenthDigit = (7 * $evenSum - $oddSum) % 10; $eleventhDigit = ($evenSum + $oddSum + $tenthDigit) % 10; return $tenthDigit . $eleventhDigit; } /** * Checks whether a TCNo has a valid checksum * * @param string $tcNo * * @return bool */ public static function tcNoIsValid($tcNo) { return self::tcNoChecksum(substr($tcNo, 0, -2)) === substr($tcNo, -2, 2); } }