Show example base variables.

This commit is contained in:
Taylor Otwell 2015-05-09 23:14:32 -05:00
parent b21d263e84
commit d502747428
1 changed files with 13 additions and 1 deletions

View File

@ -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;
} }