From ef98a6d5cdd34b79e9846736ec05ea5dcea0f308 Mon Sep 17 00:00:00 2001 From: IanM Date: Sun, 29 Sep 2024 07:06:41 +0100 Subject: [PATCH] chore: update docblock --- framework/core/src/Queue/AbstractJob.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/framework/core/src/Queue/AbstractJob.php b/framework/core/src/Queue/AbstractJob.php index 1f4e45ba40..2b6d9b6b96 100644 --- a/framework/core/src/Queue/AbstractJob.php +++ b/framework/core/src/Queue/AbstractJob.php @@ -22,9 +22,9 @@ class AbstractJob implements ShouldQueue /** * The name of the queue on which the job should be placed. - * - * This is only effective on jobs dispatched via Redis. - * + * + * This is only effective on jobs that extend `\Flarum\Queue\AbstractJob` and dispatched via Redis. + * * @var string|null */ public static $sendOnQueue = null;