Queue.php 523 B

123456789101112131415161718192021222324252627282930313233
  1. <?php
  2. namespace App\Jobs;
  3. use App\Jobs\Job;
  4. use Illuminate\Queue\SerializesModels;
  5. use Illuminate\Queue\InteractsWithQueue;
  6. use Illuminate\Contracts\Queue\ShouldQueue;
  7. class Queue extends Job implements ShouldQueue
  8. {
  9. use InteractsWithQueue, SerializesModels;
  10. /**
  11. * Create a new job instance.
  12. *
  13. * @return void
  14. */
  15. public function __construct()
  16. {
  17. //
  18. }
  19. /**
  20. * Execute the job.
  21. *
  22. * @return void
  23. */
  24. public function handle()
  25. {
  26. //
  27. }
  28. }