HOME


sh-3ll 1.0
DIR:/proc/thread-self/cwd/bright.medisavehealthcarebd.com/vendor/laravel/fortify/src/
Upload File :
Current File : //proc/thread-self/cwd/bright.medisavehealthcarebd.com/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);
    }
}