Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
taylorotwell committed Apr 1, 2024
1 parent e868783 commit 6c9c440
Showing 1 changed file with 21 additions and 21 deletions.
42 changes: 21 additions & 21 deletions Queueable.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,27 +23,6 @@ trait Queueable
*/
public $queue;

/**
* The name of the connection the chain should be sent to.
*
* @var string|null
*/
public $chainConnection;

/**
* The name of the queue the chain should be sent to.
*
* @var string|null
*/
public $chainQueue;

/**
* The callbacks to be executed on chain failure.
*
* @var array|null
*/
public $chainCatchCallbacks;

/**
* The number of seconds before the job should be made available.
*
Expand Down Expand Up @@ -72,6 +51,27 @@ trait Queueable
*/
public $chained = [];

/**
* The name of the connection the chain should be sent to.
*
* @var string|null
*/
public $chainConnection;

/**
* The name of the queue the chain should be sent to.
*
* @var string|null
*/
public $chainQueue;

/**
* The callbacks to be executed on chain failure.
*
* @var array|null
*/
public $chainCatchCallbacks;

/**
* Set the desired connection for the job.
*
Expand Down

0 comments on commit 6c9c440

Please sign in to comment.