From 32eb4b8ac95ec0294413928d6de584df7d210637 Mon Sep 17 00:00:00 2001 From: IanM Date: Sat, 28 Sep 2024 18:30:27 +0100 Subject: [PATCH] chore: add docblock explaining that this solution only works for Redis queues --- framework/core/src/Queue/AbstractJob.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/framework/core/src/Queue/AbstractJob.php b/framework/core/src/Queue/AbstractJob.php index 207f3f1b66..e7bffe9f39 100644 --- a/framework/core/src/Queue/AbstractJob.php +++ b/framework/core/src/Queue/AbstractJob.php @@ -21,6 +21,10 @@ class AbstractJob implements ShouldQueue use SerializesModels; /** + * The name of the queue on which the job should be placed. + * + * This is only effective on jobs dispatched via Redis. + * * @var string|null */ public static $sendOnQueue = null;