2015-02-20 20:49:06 -06:00
|
|
|
<?php namespace App\Jobs;
|
|
|
|
|
|
2015-02-22 20:47:03 -06:00
|
|
|
abstract class Job
|
|
|
|
|
{
|
2015-05-09 23:14:32 -05:00
|
|
|
/**
|
|
|
|
|
* 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;
|
2015-02-20 20:49:06 -06:00
|
|
|
}
|