| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 31 | public function handle(): void |
||
| 32 | { |
||
| 33 | // Find users that were soft-deleted 6 months ago |
||
| 34 | User::onlyTrashed() |
||
| 35 | ->where('deleted_at', '<', now()->subDays(config('nntmux.purge_inactive_users_days'))) |
||
| 36 | ->get() |
||
| 37 | ->each(function ($user) { |
||
| 38 | $user->forceDelete(); // Permanently delete the user |
||
| 39 | }); |
||
| 42 |