14 lines
181 B
PHP
14 lines
181 B
PHP
|
<?php
|
||
|
|
||
|
namespace common\components;
|
||
|
|
||
|
use Ramsey\Uuid\Uuid;
|
||
|
|
||
|
class UUIDManager
|
||
|
{
|
||
|
public static function GetUUID(): string
|
||
|
{
|
||
|
return Uuid::uuid4()->toString();
|
||
|
}
|
||
|
}
|