1 | <?php |
||
2 | |||
3 | namespace Tests; |
||
4 | |||
5 | use Illuminate\Bus\Queueable; |
||
6 | use Illuminate\Queue\SerializesModels; |
||
7 | use Illuminate\Queue\InteractsWithQueue; |
||
8 | use Illuminate\Contracts\Queue\ShouldQueue; |
||
9 | use Illuminate\Foundation\Bus\Dispatchable; |
||
10 | |||
11 | class FakeJob implements ShouldQueue |
||
12 | { |
||
13 | use Dispatchable, InteractsWithQueue, Queueable, SerializesModels; |
||
0 ignored issues
–
show
introduced
by
![]() |
|||
14 | |||
15 | /** |
||
16 | * Create a new job instance. |
||
17 | * |
||
18 | * @return void |
||
19 | */ |
||
20 | public function __construct() |
||
21 | { |
||
22 | // |
||
23 | } |
||
24 | |||
25 | /** |
||
26 | * Execute the job. |
||
27 | * |
||
28 | * @return void |
||
29 | */ |
||
30 | public function handle() |
||
31 | { |
||
32 | // |
||
33 | } |
||
34 | } |
||
35 |