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