From 8de7b6b92b08ee15317ee1dbf34aa14663d0f147 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benjamin=20Beganovi=C4=87?= Date: Tue, 30 Jun 2020 14:38:24 +0200 Subject: [PATCH] Remove double check in index() --- app/Http/Controllers/SetupController.php | 2 -- 1 file changed, 2 deletions(-) diff --git a/app/Http/Controllers/SetupController.php b/app/Http/Controllers/SetupController.php index 928647385ee1..65c68089f09c 100644 --- a/app/Http/Controllers/SetupController.php +++ b/app/Http/Controllers/SetupController.php @@ -39,8 +39,6 @@ class SetupController extends Controller return redirect('/'); } - $check = SystemHealth::check(); - return view('setup.index', ['check' => $check]); }