ok
Direktori : /home2/selectio/www/fms-worksuite/vendor/laravel/fortify/src/ |
Current File : /home2/selectio/www/fms-worksuite/vendor/laravel/fortify/src/RecoveryCode.php |
<?php namespace Laravel\Fortify; use Illuminate\Support\Str; class RecoveryCode { /** * Generate a new recovery code. * * @return string */ public static function generate() { return Str::random(10).'-'.Str::random(10); } }