Job.php 720 B

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