From ccd7f79eb5fd4586a61fef3f16c106aad81222ec Mon Sep 17 00:00:00 2001 From: Luke Kuzmish <42181698+cosmastech@users.noreply.github.com> Date: Wed, 27 May 2026 06:55:53 -0400 Subject: [PATCH] hint the unit Clarify the parameter description for uniqueFor. --- src/Illuminate/Queue/Attributes/UniqueFor.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Illuminate/Queue/Attributes/UniqueFor.php b/src/Illuminate/Queue/Attributes/UniqueFor.php index 0dfece3cbf29..a1cabcb2b51c 100644 --- a/src/Illuminate/Queue/Attributes/UniqueFor.php +++ b/src/Illuminate/Queue/Attributes/UniqueFor.php @@ -10,7 +10,7 @@ class UniqueFor /** * Create a new attribute instance. * - * @param int $uniqueFor + * @param int $uniqueFor Seconds to consider the queueable unique for. */ public function __construct(public int $uniqueFor) {