Skip to content

Commit 62b9b6f

Browse files
committed
fix uuid
1 parent c911350 commit 62b9b6f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/helpers/uuid.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@
44

55
function uuid($ordered = false)
66
{
7-
($ordered == true) ?? return Str::orderedUuid();
7+
if ($ordered == true)
8+
return Str::orderedUuid();
89

910
return (string) Str::uuid();
1011
}

0 commit comments

Comments
 (0)