Returns a version 7 (Unix Epoch time) UUID
DateTimeInterface|null $dateTime An optional date/time from which: to create the version 7 UUID. If not provided, the UUID is generated using the current date/time.
non-empty-string Version 7 UUID as a string
function v7(?DateTimeInterface $dateTime = null) : string { return Uuid::uuid7($dateTime)->toString(); }