Skip to content

Commit

Permalink
Update CallQueuedListener.php
Browse files Browse the repository at this point in the history
  • Loading branch information
taylorotwell authored Mar 4, 2024
1 parent 43792d7 commit a08291c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/Illuminate/Events/CallQueuedListener.php
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit a08291c

Please sign in to comment.