Files
solidtime/app/Service/ReportService.php
T
2024-12-09 12:57:25 +01:00

16 lines
199 B
PHP

<?php
declare(strict_types=1);
namespace App\Service;
use Illuminate\Support\Str;
class ReportService
{
public function generateSecret(): string
{
return Str::random(40);
}
}