Passed
Push — master ( 50f570...63949b )
by Darko
08:17
created
app/Jobs/PurgeDeletedAccounts.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@
 block discarded – undo
34 34
         User::onlyTrashed()
35 35
             ->where('deleted_at', '<', now()->subDays(config('nntmux.purge_inactive_users_days')))
36 36
             ->get()
37
-            ->each(function ($user) {
37
+            ->each(function($user) {
38 38
                 $user->forceDelete(); // Permanently delete the user
39 39
             });
40 40
     }
Please login to merge, or discard this patch.