Sin descripción
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.stub 420B

12345678910111213141516171819202122232425262728293031
  1. <?php
  2. namespace {{ namespace }};
  3. use Illuminate\Bus\Queueable;
  4. use Illuminate\Foundation\Bus\Dispatchable;
  5. class {{ class }}
  6. {
  7. use Dispatchable, Queueable;
  8. /**
  9. * Create a new job instance.
  10. *
  11. * @return void
  12. */
  13. public function __construct()
  14. {
  15. //
  16. }
  17. /**
  18. * Execute the job.
  19. *
  20. * @return void
  21. */
  22. public function handle()
  23. {
  24. //
  25. }
  26. }