1 | <?php |
||
2 | |||
3 | namespace Anfischer\Foundation\Job; |
||
4 | |||
5 | use Illuminate\Queue\SerializesModels; |
||
6 | use Illuminate\Queue\InteractsWithQueue; |
||
7 | use Illuminate\Contracts\Queue\ShouldQueue; |
||
8 | use Illuminate\Bus\Queueable; |
||
9 | |||
10 | /** |
||
11 | * An abstract Job that can be managed with a queue |
||
12 | * when extended the job will be queued by default. |
||
13 | */ |
||
14 | class QueueableJob extends Job implements ShouldQueue |
||
15 | { |
||
16 | use SerializesModels; |
||
0 ignored issues
–
show
introduced
by
![]() |
|||
17 | use InteractsWithQueue; |
||
18 | use Queueable; |
||
19 | } |
||
20 |