We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b72749b commit 22864bbCopy full SHA for 22864bb
src/Commands/Help.php
@@ -79,6 +79,10 @@ protected function showCommand(string $commandName) : void
79
$lastKey = \array_key_last($newOptions);
80
foreach ($newOptions as $option => $description) {
81
CLI::write(' ' . $this->setColor($option));
82
+ $description = \trim($description);
83
+ if (!\str_ends_with($description, '.')) {
84
+ $description .= '.';
85
+ }
86
CLI::write(' ' . $description);
87
if ($option !== $lastKey) {
88
CLI::newLine();
0 commit comments