mirror of
https://github.com/solidtime-io/solidtime.git
synced 2026-05-07 20:32:26 +00:00
16 lines
199 B
PHP
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);
|
|
}
|
|
}
|