No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

job.queued.stub 605B

12345678910111213141516171819202122232425262728293031323334
  1. <?php
  2. namespace {{ namespace }};
  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 {{ class }} implements ShouldQueue
  9. {
  10. use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
  11. /**
  12. * Create a new job instance.
  13. *
  14. * @return void
  15. */
  16. public function __construct()
  17. {
  18. //
  19. }
  20. /**
  21. * Execute the job.
  22. *
  23. * @return void
  24. */
  25. public function handle()
  26. {
  27. //
  28. }
  29. }