From cd2a71d43c1dc26a48b728c9efc2f5d3afbdba7d Mon Sep 17 00:00:00 2001 From: Stanislas Date: Tue, 6 Aug 2019 07:54:53 +0200 Subject: [PATCH] ModelsCommand: Remove question mark (#812) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Sorry this is a bit nitpicky 😅 --- src/Console/ModelsCommand.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Console/ModelsCommand.php b/src/Console/ModelsCommand.php index a07ed07..051105f 100644 --- a/src/Console/ModelsCommand.php +++ b/src/Console/ModelsCommand.php @@ -96,7 +96,7 @@ class ModelsCommand extends Command //If filename is default and Write is not specified, ask what to do if (!$this->write && $filename === $this->filename && !$this->option('nowrite')) { if ($this->confirm( - "Do you want to overwrite the existing model files? Choose no to write to $filename instead?" + "Do you want to overwrite the existing model files? Choose no to write to $filename instead" ) ) { $this->write = true;