From a08291cdf4dffee4f3d70de3656095638b3c745d Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Mon, 4 Mar 2024 08:36:02 -0600 Subject: [PATCH] Update CallQueuedListener.php --- src/Illuminate/Events/CallQueuedListener.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/Illuminate/Events/CallQueuedListener.php b/src/Illuminate/Events/CallQueuedListener.php index d5743e3e7d6e..4fb66266359a 100644 --- a/src/Illuminate/Events/CallQueuedListener.php +++ b/src/Illuminate/Events/CallQueuedListener.php @@ -69,18 +69,18 @@ class CallQueuedListener implements ShouldQueue public $timeout; /** - * Indicates if the job should be encrypted. + * Indicates if the job should fail if the timeout is exceeded. * * @var bool */ - public $shouldBeEncrypted = false; + public $failOnTimeout = false; /** - * Indicates if the job should fail if the timeout is exceeded. + * Indicates if the job should be encrypted. * * @var bool */ - public $failOnTimeout = false; + public $shouldBeEncrypted = false; /** * Create a new job instance.