From 095f83cb857253acdcc037e5f8a6028678115404 Mon Sep 17 00:00:00 2001 From: Mateus Junges Date: Fri, 2 Feb 2024 21:39:32 -0300 Subject: [PATCH] wip --- src/Concerns/Trackable.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Concerns/Trackable.php b/src/Concerns/Trackable.php index 113eef0..c77b76c 100644 --- a/src/Concerns/Trackable.php +++ b/src/Concerns/Trackable.php @@ -23,9 +23,9 @@ public function __construct() return; } - // If this job implements the ShouldBeUnique, and it is a duplicate, laravel - // will discard the job from the queue. Therefore, there is no need to - // continue tracking this job, and we can safely return early. + // If this job implements ShouldBeUnique and it's a duplicate, laravel + // will discard it from the queue. Therefore, there is no need to + // continue tracking, and we can safely return early. if ($this instanceof ShouldBeUnique && ! $this->isUniqueJobAndCanAcquireLock()) { return; }