123456789101112131415161718192021222324252627282930313233 |
- <?php
- namespace App\Jobs;
- use App\Jobs\Job;
- use Illuminate\Queue\SerializesModels;
- use Illuminate\Queue\InteractsWithQueue;
- use Illuminate\Contracts\Queue\ShouldQueue;
- class Queue extends Job implements ShouldQueue
- {
- use InteractsWithQueue, SerializesModels;
- /**
- * Create a new job instance.
- *
- * @return void
- */
- public function __construct()
- {
- //
- }
- /**
- * Execute the job.
- *
- * @return void
- */
- public function handle()
- {
- //
- }
- }
|