diff --git a/app/Jobs/Job.php b/app/Jobs/Job.php index 33fe4f05..cf6dc247 100644 --- a/app/Jobs/Job.php +++ b/app/Jobs/Job.php @@ -2,5 +2,17 @@ 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; }