ionghitun /
lumen-start-app
| 1 | <?php |
||
| 2 | |||
| 3 | namespace App\Jobs; |
||
| 4 | |||
| 5 | use Illuminate\Bus\Queueable; |
||
| 6 | use Illuminate\Contracts\Queue\ShouldQueue; |
||
| 7 | use Illuminate\Queue\InteractsWithQueue; |
||
| 8 | use Illuminate\Queue\SerializesModels; |
||
| 9 | |||
| 10 | /** |
||
| 11 | * Class Job |
||
| 12 | * |
||
| 13 | * @package App\Jobs |
||
| 14 | */ |
||
| 15 | abstract class Job implements ShouldQueue |
||
| 16 | { |
||
| 17 | use InteractsWithQueue, Queueable, SerializesModels; |
||
|
0 ignored issues
–
show
introduced
by
Loading history...
|
|||
| 18 | } |
||
| 19 |