Files
LaravelSkeletonAPI/app/Kernel/Http/Validation.php
2026-01-05 16:33:20 +04:00

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);
}
}