Job.php 535 B

123456789101112131415161718192021
  1. <?php
  2. namespace App\Jobs;
  3. use Illuminate\Bus\Queueable;
  4. abstract class Job
  5. {
  6. /*
  7. |--------------------------------------------------------------------------
  8. | Queueable Jobs
  9. |--------------------------------------------------------------------------
  10. |
  11. | This job base class provides a central location to place any logic that
  12. | is shared across all of your jobs. The trait included with the class
  13. | provides access to the "queueOn" and "delay" queue helper methods.
  14. |
  15. */
  16. use Queueable;
  17. }