From d537fc5c328ba9baca9a00403b6613cb206d2026 Mon Sep 17 00:00:00 2001 From: snipe Date: Thu, 12 Nov 2020 15:21:00 -0800 Subject: [PATCH] Added linebreak to console confirmation --- app/Console/Commands/PurgeLoginAttempts.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Console/Commands/PurgeLoginAttempts.php b/app/Console/Commands/PurgeLoginAttempts.php index b49f32430e..7a7a1394d7 100644 --- a/app/Console/Commands/PurgeLoginAttempts.php +++ b/app/Console/Commands/PurgeLoginAttempts.php @@ -37,7 +37,7 @@ class PurgeLoginAttempts extends Command */ public function handle() { - if ($this->confirm("\n****************************************************\nTHIS WILL DELETE ALL OF THE YOUR LOGIN ATTEMPT RECORDS. There is NO undo. \n****************************************************\n\nDo you wish to continue? No backsies! [y|N]")) { + if ($this->confirm("\n****************************************************\nTHIS WILL DELETE ALL OF THE YOUR LOGIN ATTEMPT RECORDS. \nThere is NO undo! \n****************************************************\n\nDo you wish to continue? No backsies! [y|N]")) { \DB::statement('delete from login_attempts'); } }