From 026f099ba3c16579eb116d18084a76bf005a73d0 Mon Sep 17 00:00:00 2001 From: snipe Date: Wed, 13 Jul 2016 05:47:32 -0700 Subject: [PATCH] Fixed indenting --- app/Models/Setting.php | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/app/Models/Setting.php b/app/Models/Setting.php index 8482ca1298..c2849084d0 100755 --- a/app/Models/Setting.php +++ b/app/Models/Setting.php @@ -58,10 +58,9 @@ class Setting extends Model public static function setupCompleted() { - $users_table_exists = Schema::hasTable('users'); - $settings_table_exists = Schema::hasTable('settings'); - - + $users_table_exists = Schema::hasTable('users'); + $settings_table_exists = Schema::hasTable('settings'); + if ($users_table_exists && $settings_table_exists) { $usercount = User::withTrashed()->count();