16 lines
226 B
PHP
16 lines
226 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Kernel\Http;
|
|
|
|
use App\Kernel\String\Regex;
|
|
|
|
class Validation
|
|
{
|
|
public static function uuid7(): string
|
|
{
|
|
return sprintf('regex:/%s/', Regex::Uuid7->value);
|
|
}
|
|
}
|