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