Total Complexity | 2 |
Total Lines | 27 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
12 | class PurgeDeletedAccounts implements ShouldQueue |
||
13 | { |
||
14 | use Dispatchable, InteractsWithQueue, Queueable, SerializesModels; |
||
15 | |||
16 | /** |
||
17 | * Create a new job instance. |
||
18 | * |
||
19 | * @return void |
||
20 | */ |
||
21 | public function __construct() |
||
22 | { |
||
23 | // |
||
24 | } |
||
25 | |||
26 | /** |
||
27 | * Execute the job. |
||
28 | * |
||
29 | * Find users that were soft-deleted 6 months ago and permanently delete them. |
||
30 | */ |
||
31 | public function handle(): void |
||
39 | }); |
||
40 | } |
||
42 |