diff --git a/setup/FooJob.php b/setup/FooJob.php index a609bab..e79c21b 100755 --- a/setup/FooJob.php +++ b/setup/FooJob.php @@ -3,13 +3,16 @@ namespace App\Jobs; use App\Models\User; +use Illuminate\Bus\Queueable; +use Illuminate\Foundation\Bus\Dispatchable; +use Illuminate\Queue\InteractsWithQueue; +use Illuminate\Queue\SerializesModels; use Illuminate\Contracts\Queue\ShouldQueue; -use Illuminate\Foundation\Queue\Queueable; use Illuminate\Support\Str; class FooJob implements ShouldQueue { - use Queueable; + use Dispatchable, InteractsWithQueue, Queueable, SerializesModels; public function handle(): void {