File "RequestIdGenerator.php"
Full Path: /var/www/html/back/vendor/barryvdh/laravel-debugbar/src/Support/RequestIdGenerator.php
File size: 272 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace Barryvdh\Debugbar\Support;
use DebugBar\RequestIdGeneratorInterface;
use Illuminate\Support\Str;
class RequestIdGenerator implements RequestIdGeneratorInterface
{
public function generate(): string
{
return (string) Str::ulid();
}
}