Show example base variables.
This commit is contained in:
parent
b21d263e84
commit
d502747428
|
@ -2,5 +2,17 @@
|
||||||
|
|
||||||
abstract class Job
|
abstract class Job
|
||||||
{
|
{
|
||||||
//
|
/**
|
||||||
|
* The name of the queue the job should be sent to.
|
||||||
|
*
|
||||||
|
* @var string
|
||||||
|
*/
|
||||||
|
public $queue;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The seconds before the job should be made available.
|
||||||
|
*
|
||||||
|
* @var int
|
||||||
|
*/
|
||||||
|
public $delay;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue