Spaces:
Running
Running
| namespace App\Jobs; | |
| use Illuminate\Contracts\Queue\ShouldQueue; | |
| use Illuminate\Foundation\Queue\Queueable; | |
| class ProcessChemistryCsvJob implements ShouldQueue | |
| { | |
| use Queueable; | |
| /** | |
| * Create a new job instance. | |
| */ | |
| public function __construct() | |
| { | |
| // | |
| } | |
| /** | |
| * Execute the job. | |
| */ | |
| public function handle(): void | |
| { | |
| // | |
| } | |
| } | |