Add captcha tokens management.
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
<?php declare(strict_types=1);
|
||||
|
||||
namespace App\Services\GenerateTokenCommand;
|
||||
|
||||
use Illuminate\Support\Str;
|
||||
|
||||
final readonly class GenerateTokenUuidCommand extends GenerateTokenCommand
|
||||
{
|
||||
public function execute(): string
|
||||
{
|
||||
return (string) Str::orderedUuid();
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user