From d502747428494e634fe699dbc44c703845e2a79f Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Sat, 9 May 2015 23:14:32 -0500 Subject: [PATCH] Show example base variables. --- app/Jobs/Job.php | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) 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; }