Added linebreak to console confirmation

This commit is contained in:
snipe 2020-11-12 15:21:00 -08:00
parent 9164dda64f
commit d537fc5c32

View file

@ -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');
}
}