]> BookStack Code Mirror - website/blob - app/Jobs/Job.php
7c873e10bdfb824b95c1f49c2f65b00852519b22
[website] / app / Jobs / Job.php
1 <?php
2
3 namespace App\Jobs;
4
5 use Illuminate\Bus\Queueable;
6 use Illuminate\Queue\SerializesModels;
7 use Illuminate\Queue\InteractsWithQueue;
8 use Illuminate\Contracts\Queue\ShouldQueue;
9
10 abstract class Job implements ShouldQueue
11 {
12     /*
13     |--------------------------------------------------------------------------
14     | Queueable Jobs
15     |--------------------------------------------------------------------------
16     |
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.
20     |
21     */
22
23     use InteractsWithQueue, Queueable, SerializesModels;
24 }