From 3a16d887c07fdf3008c1f44d2c33a9af4f691249 Mon Sep 17 00:00:00 2001 From: Christopher Vagnetoft Date: Fri, 14 Oct 2022 00:27:51 +0200 Subject: [PATCH] Bugfix: Stop command invocation without service --- src/Commands/StopCommand.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Commands/StopCommand.php b/src/Commands/StopCommand.php index 5f82b23..ff44b5f 100644 --- a/src/Commands/StopCommand.php +++ b/src/Commands/StopCommand.php @@ -31,7 +31,7 @@ class StopCommand extends Command $instanceName = $input->getOption("instance"); $stopAll = $input->getOption("all"); - if (!($instanceName || $stopAll)) { + if (!($serviceName || $stopAll)) { $output->writeln("You need to specify a service, or --all"); return self::FAILURE; }