| Current Path : /var/www/html/eddacademiach.sumar.com.py/vendor/laravel/fortify/src/ |
| Current File : /var/www/html/eddacademiach.sumar.com.py/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);
}
}