Skip to content

Commit 0200ce6

Browse files
committed
wip
1 parent a317a1a commit 0200ce6

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/Console/InstallCommand.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ class InstallCommand extends Command
1111
*
1212
* @var string
1313
*/
14-
protected $signature = 'sail:install {--services= : The services that should be included in the installation}';
14+
protected $signature = 'sail:install {--with= : The services that should be included in the installation}';
1515

1616
/**
1717
* The console command description.
@@ -27,8 +27,8 @@ class InstallCommand extends Command
2727
*/
2828
public function handle()
2929
{
30-
if ($this->option('services')) {
31-
$services = $this->option('services') == 'none' ? [] : explode(',', $this->option('services'));
30+
if ($this->option('with')) {
31+
$services = $this->option('with') == 'none' ? [] : explode(',', $this->option('with'));
3232
} elseif ($this->option('no-interaction')) {
3333
$services = ['mysql', 'redis', 'selenium', 'mailhog'];
3434
} else {

0 commit comments

Comments
 (0)