DeviceRecordImportJob.php 632 B

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