From 6afb13c9b7f4e15acf57e9f1cf962bc6122098f4 Mon Sep 17 00:00:00 2001 From: Carlos Buenosvinos Date: Tue, 12 May 2020 20:44:54 +0200 Subject: [PATCH] Secrets, Security, and Messenger commands descriptions should not end with a "." (dot) --- Command/FailedMessagesRemoveCommand.php | 2 +- Command/FailedMessagesRetryCommand.php | 2 +- Command/FailedMessagesShowCommand.php | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) 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.