5 use Illuminate\Bus\Queueable;
6 use Illuminate\Queue\SerializesModels;
7 use Illuminate\Queue\InteractsWithQueue;
8 use Illuminate\Contracts\Queue\ShouldQueue;
10 abstract class Job implements ShouldQueue
13 |--------------------------------------------------------------------------
15 |--------------------------------------------------------------------------
17 | This job base class provides a central location to place any logic that
18 | is shared across all of your jobs. The trait included with the class
19 | provides access to the "queueOn" and "delay" queue helper methods.
23 use InteractsWithQueue, Queueable, SerializesModels;