Skip to content

Commit

Permalink
Secrets, Security, and Messenger commands descriptions should not end…
Browse files Browse the repository at this point in the history
… with a "." (dot)
  • Loading branch information
carlosbuenosvinos authored and fabpot committed May 12, 2020
1 parent e11b0c3 commit 6afb13c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Command/FailedMessagesRemoveCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -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 <info>%command.name%</info> removes given messages that are pending in the failure transport.
Expand Down
2 changes: 1 addition & 1 deletion Command/FailedMessagesRetryCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -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 <info>%command.name%</info> retries message in the failure transport.
Expand Down
2 changes: 1 addition & 1 deletion Command/FailedMessagesShowCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -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 <info>%command.name%</info> shows message that are pending in the failure transport.
Expand Down

0 comments on commit 6afb13c

Please sign in to comment.