您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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. }