From e85210de199ee93b5e2fa615443e1e3328d15d63 Mon Sep 17 00:00:00 2001 From: DariusIII Date: Mon, 6 Mar 2023 23:43:43 +0100 Subject: [PATCH] CS fix --- misc/update/tmux/run.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/misc/update/tmux/run.php b/misc/update/tmux/run.php index 8f9593b79..642ac3314 100644 --- a/misc/update/tmux/run.php +++ b/misc/update/tmux/run.php @@ -21,7 +21,7 @@ Utility::clearScreen(); //reset collections dateadded to now if dateadded > delay time check $colorCli->header('Resetting collections that have expired to this moment. This could take some time if many collections need to be reset'); -DB::transaction(function() use ($delaytimet){ +DB::transaction(function () use ($delaytimet) { Collection::query()->where('dateadded', '<', now()->subHours($delaytimet))->update(['dateadded' => now()]); }, 10);