| Total Complexity | 2 | 
| Total Lines | 27 | 
| Duplicated Lines | 0 % | 
| Changes | 1 | ||
| Bugs | 0 | Features | 0 | 
| 1 | <?php  | 
            ||
| 12 | class MessageFollowers implements ShouldQueue  | 
            ||
| 13 | { | 
            ||
| 14 | use Dispatchable,  | 
            ||
| 
                                                                                                    
                        
                         | 
                |||
| 15 | InteractsWithQueue,  | 
            ||
| 16 | Queueable,  | 
            ||
| 17 | SerializesModels;  | 
            ||
| 18 | |||
| 19 | public bool $deleteWhenMissingModels = true;  | 
            ||
| 20 | protected Sermon $sermon;  | 
            ||
| 21 | |||
| 22 | /**  | 
            ||
| 23 | * Create a new job instance.  | 
            ||
| 24 | *  | 
            ||
| 25 | * @param Sermon $sermon  | 
            ||
| 26 | */  | 
            ||
| 27 | public function __construct(Sermon $sermon)  | 
            ||
| 28 |     { | 
            ||
| 29 | $this->sermon = $sermon;  | 
            ||
| 30 | }  | 
            ||
| 31 | |||
| 32 | /**  | 
            ||
| 33 | * Execute the job.  | 
            ||
| 34 | *  | 
            ||
| 35 | * @return void  | 
            ||
| 36 | */  | 
            ||
| 37 | public function handle()  | 
            ||
| 39 | //  | 
            ||
| 40 | }  | 
            ||
| 42 |