Files
lucent-laravel/src/CommonData/Id.php
T

14 lines
169 B
PHP
Raw Normal View History

2023-10-02 23:10:49 +03:00
<?php
2024-03-23 12:12:13 +02:00
namespace Lucent\CommonData;
2023-10-02 23:10:49 +03:00
use Illuminate\Support\Str;
class Id
{
public static function new(): string
{
return (string) Str::uuid();
}
}