Job.php 286 B

123456789101112131415161718
  1. <?php namespace App\Jobs;
  2. abstract class Job
  3. {
  4. /**
  5. * The name of the queue the job should be sent to.
  6. *
  7. * @var string
  8. */
  9. public $queue;
  10. /**
  11. * The seconds before the job should be made available.
  12. *
  13. * @var int
  14. */
  15. public $delay;
  16. }