From 1a27f2102903049153bd3f1617384a82bc09156a Mon Sep 17 00:00:00 2001 From: Nick Howell Date: Mon, 18 Apr 2016 14:35:13 -0400 Subject: [PATCH] Remove duplicate "[y/N]" from confirmable console commands --- src/Illuminate/Console/ConfirmableTrait.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Illuminate/Console/ConfirmableTrait.php b/src/Illuminate/Console/ConfirmableTrait.php index b9e1a074e23..56d9bd93877 100644 --- a/src/Illuminate/Console/ConfirmableTrait.php +++ b/src/Illuminate/Console/ConfirmableTrait.php @@ -29,7 +29,7 @@ public function confirmToProceed($warning = 'Application In Production!', $callb $this->comment(str_repeat('*', strlen($warning) + 12)); $this->output->writeln(''); - $confirmed = $this->confirm('Do you really wish to run this command? [y/N]'); + $confirmed = $this->confirm('Do you really wish to run this command?'); if (! $confirmed) { $this->comment('Command Cancelled!');