diff --git a/Command/FailedMessagesRemoveCommand.php b/Command/FailedMessagesRemoveCommand.php index 7fccbac4..951b7d49 100644 --- a/Command/FailedMessagesRemoveCommand.php +++ b/Command/FailedMessagesRemoveCommand.php @@ -39,7 +39,7 @@ protected function configure(): void new InputOption('force', null, InputOption::VALUE_NONE, 'Force the operation without confirmation'), new InputOption('show-messages', null, InputOption::VALUE_NONE, 'Display messages before removing it (if multiple ids are given)'), ]) - ->setDescription('Remove given messages from the failure transport.') + ->setDescription('Remove given messages from the failure transport') ->setHelp(<<<'EOF' The %command.name% removes given messages that are pending in the failure transport. diff --git a/Command/FailedMessagesRetryCommand.php b/Command/FailedMessagesRetryCommand.php index 696e77f7..87426edd 100644 --- a/Command/FailedMessagesRetryCommand.php +++ b/Command/FailedMessagesRetryCommand.php @@ -59,7 +59,7 @@ protected function configure(): void new InputArgument('id', InputArgument::IS_ARRAY, 'Specific message id(s) to retry'), new InputOption('force', null, InputOption::VALUE_NONE, 'Force action without confirmation'), ]) - ->setDescription('Retries one or more messages from the failure transport.') + ->setDescription('Retries one or more messages from the failure transport') ->setHelp(<<<'EOF' The %command.name% retries message in the failure transport. diff --git a/Command/FailedMessagesShowCommand.php b/Command/FailedMessagesShowCommand.php index bcb69116..0baf7a41 100644 --- a/Command/FailedMessagesShowCommand.php +++ b/Command/FailedMessagesShowCommand.php @@ -37,7 +37,7 @@ protected function configure(): void new InputArgument('id', InputArgument::OPTIONAL, 'Specific message id to show'), new InputOption('max', null, InputOption::VALUE_REQUIRED, 'Maximum number of messages to list', 50), ]) - ->setDescription('Shows one or more messages from the failure transport.') + ->setDescription('Shows one or more messages from the failure transport') ->setHelp(<<<'EOF' The %command.name% shows message that are pending in the failure transport.