From 27ea6697bfcba51bd6b73c5289bdc47b9356272b Mon Sep 17 00:00:00 2001 From: Craig Williams Date: Tue, 24 May 2022 17:05:37 +0100 Subject: [PATCH] Fixed bad option flag --- src/Bakery/WorkerRunCommand.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/Bakery/WorkerRunCommand.php b/src/Bakery/WorkerRunCommand.php index 2d34b22..9f65658 100644 --- a/src/Bakery/WorkerRunCommand.php +++ b/src/Bakery/WorkerRunCommand.php @@ -31,8 +31,7 @@ class WorkerRunCommand extends BaseCommand $this->setName('worker:run') ->setDescription('Run a worker loop') ->setHelp('This command runs a the workers job loop. The worker will not return until SIGTERM is sent.') - ->addOption('debug', null, InputOption::VALUE_NONE, 'Output additional status messages.') - ->addOption('quiet', null, InputOption::VALUE_NONE, 'Suppress output messages.'); + ->addOption('debug', null, InputOption::VALUE_NONE, 'Output additional status messages.'); } /**