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 News $article; |
||
21 | |||
22 | /** |
||
23 | * Create a new job instance. |
||
24 | * |
||
25 | * @param News $article |
||
26 | */ |
||
27 | public function __construct(News $article) |
||
28 | { |
||
29 | $this->article = $article; |
||
30 | } |
||
31 | |||
32 | /** |
||
33 | * Execute the job. |
||
34 | * |
||
35 | * @return void |
||
36 | */ |
||
37 | public function handle() |
||
38 | { |
||
39 | // |
||
42 |