From 2da480d7a33c382c650a8ac6f6da94bd1f4d5793 Mon Sep 17 00:00:00 2001 From: Ben Ramsey Date: Fri, 5 Aug 2022 17:36:05 -0500 Subject: [PATCH] Fix function type hinting --- src/functions.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/functions.php b/src/functions.php index f5df148..d722f06 100644 --- a/src/functions.php +++ b/src/functions.php @@ -25,7 +25,7 @@ use Ramsey\Uuid\Type\Integer as IntegerObject; * @param Hexadecimal|int|string|null $node A 48-bit number representing the * hardware address; this number may be represented as an integer or a * hexadecimal string - * @param int $clockSeq A 14-bit number used to help avoid duplicates that + * @param int|null $clockSeq A 14-bit number used to help avoid duplicates that * could arise when the clock is set backwards in time or if the node ID * changes * @@ -111,7 +111,7 @@ function v5($ns, string $name): string * * @param Hexadecimal|null $node A 48-bit number representing the hardware * address - * @param int $clockSeq A 14-bit number used to help avoid duplicates that + * @param int|null $clockSeq A 14-bit number used to help avoid duplicates that * could arise when the clock is set backwards in time or if the node ID * changes *