From 0200ce6e0f697699bce036c42d91f1daab8039a8 Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Wed, 24 Feb 2021 15:20:16 -0600 Subject: [PATCH] wip --- src/Console/InstallCommand.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Console/InstallCommand.php b/src/Console/InstallCommand.php index 3ff8ec7d..bf574f8d 100644 --- a/src/Console/InstallCommand.php +++ b/src/Console/InstallCommand.php @@ -11,7 +11,7 @@ class InstallCommand extends Command * * @var string */ - protected $signature = 'sail:install {--services= : The services that should be included in the installation}'; + protected $signature = 'sail:install {--with= : The services that should be included in the installation}'; /** * The console command description. @@ -27,8 +27,8 @@ class InstallCommand extends Command */ public function handle() { - if ($this->option('services')) { - $services = $this->option('services') == 'none' ? [] : explode(',', $this->option('services')); + if ($this->option('with')) { + $services = $this->option('with') == 'none' ? [] : explode(',', $this->option('with')); } elseif ($this->option('no-interaction')) { $services = ['mysql', 'redis', 'selenium', 'mailhog']; } else {