Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

ProcessOverdueInvoices.php 398B

123456789101112131415161718192021222324252627
  1. <?php
  2. namespace App\Jobs;
  3. use Illuminate\Contracts\Queue\ShouldQueue;
  4. use Illuminate\Foundation\Queue\Queueable;
  5. class ProcessOverdueInvoices implements ShouldQueue
  6. {
  7. use Queueable;
  8. /**
  9. * Create a new job instance.
  10. */
  11. public function __construct()
  12. {
  13. //
  14. }
  15. /**
  16. * Execute the job.
  17. */
  18. public function handle(): void
  19. {
  20. //
  21. }
  22. }