Total Complexity | 0 |
Total Lines | 14 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
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 | } |
||
25 |