Total Complexity | 2 |
Total Lines | 30 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
14 | class DropTb implements ShouldQueue |
||
15 | { |
||
16 | use Dispatchable, InteractsWithQueue, Queueable, SerializesModels; |
||
|
|||
17 | private $tenant; |
||
18 | /** |
||
19 | * Create a new job instance. |
||
20 | * |
||
21 | * @return void |
||
22 | */ |
||
23 | public function __construct(Company $tenant) |
||
24 | { |
||
25 | // |
||
26 | $this->tenant = $tenant; |
||
27 | |||
28 | // $this->queue = 'light'; |
||
29 | } |
||
30 | |||
31 | /** |
||
32 | * Execute the job. |
||
33 | * |
||
34 | * @return void |
||
35 | */ |
||
36 | public function handle() |
||
44 | } |
||
45 | } |
||
46 |