From 30cbe533079b1d3b7476ed6bc1583b265f363c25 Mon Sep 17 00:00:00 2001 From: Alexis Saettler Date: Sat, 17 Feb 2018 14:14:22 +0100 Subject: [PATCH] Fix setup:production command (#909) --- app/Console/Commands/SetupProduction.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/Console/Commands/SetupProduction.php b/app/Console/Commands/SetupProduction.php index 3bfdb19e955..e8a7890b940 100644 --- a/app/Console/Commands/SetupProduction.php +++ b/app/Console/Commands/SetupProduction.php @@ -13,8 +13,8 @@ class SetupProduction extends Command * @var string */ protected $signature = 'setup:production {--force} - {--email= login email for the first account} - {--password= password to set for the first account}'; + {--email= : Login email for the first account} + {--password= : Password to set for the first account}'; /** * The console command description. @@ -38,7 +38,7 @@ public function __construct() */ public function handle() { - if ((! $this->option('force')) &&  (! $this->confirm('You are about to setup and configure Monica. Do you wish to continue?'))) { + if ((! $this->option('force')) && (! $this->confirm('You are about to setup and configure Monica. Do you wish to continue?'))) { return; }