Files
theloftstore/vendor/laravel/fortify/src/RecoveryCode.php
T
2025-03-28 08:52:46 +01:00

19 lines
271 B
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);
}
}