123456789101112131415161718192021222324252627 |
- <?php
-
- namespace App\Jobs;
-
- use Illuminate\Contracts\Queue\ShouldQueue;
- use Illuminate\Foundation\Queue\Queueable;
-
- class ProcessOverdueInvoices implements ShouldQueue
- {
- use Queueable;
-
- /**
- * Create a new job instance.
- */
- public function __construct()
- {
- //
- }
-
- /**
- * Execute the job.
- */
- public function handle(): void
- {
- //
- }
- }
|