Total Complexity | 3 |
Total Lines | 44 |
Duplicated Lines | 0 % |
Changes | 2 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
15 | class ExportGedCom implements ShouldQueue |
||
16 | { |
||
17 | use Dispatchable, InteractsWithQueue, Queueable, SerializesModels; |
||
|
|||
18 | |||
19 | protected $family_id; |
||
20 | |||
21 | /** |
||
22 | * Create a new job instance. |
||
23 | * |
||
24 | * @return void |
||
25 | */ |
||
26 | public function __construct($family_id, Request $request) |
||
27 | { |
||
28 | // |
||
29 | $this->family_id = $family_id; |
||
30 | } |
||
31 | |||
32 | /** |
||
33 | * Execute the job. |
||
34 | * |
||
35 | * @return void |
||
36 | */ |
||
37 | public function handle() |
||
59 | } |
||
60 | } |
||
61 |