Browse Source

Show example base variables.

Taylor Otwell 9 years ago
parent
commit
d502747428
1 changed files with 13 additions and 1 deletions
  1. 13 1
      app/Jobs/Job.php

+ 13 - 1
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;
 }