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;
-
- public function __construct()
- {
-
- }
-
- public function handle()
- {
-
- }
- }
|