Fixed bad option flag

This commit is contained in:
2022-05-24 17:05:37 +01:00
parent 6806291554
commit 27ea6697bf

View File

@@ -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.');
}
/**