8000 minor #661 Remove trailing "." for consistency with #36798 (carlosbue… · symfony/maker-bundle@cd9a701 · GitHub
[go: up one dir, main page]

Skip to content

Commit cd9a701

Browse files
committed
minor #661 Remove trailing "." for consistency with #36798 (carlosbuenosvinos)
This PR was squashed before being merged into the 1.0-dev branch. Discussion ---------- Remove trailing "." for consistency with #36798 | Q | A | ------------- | --- | Branch? | 5.1 (to be switched while merging) | Bug fix? | no | New feature? | no | Deprecations? | no | Tickets | N/A | License | MIT | Doc PR | N/A Following symfony/symfony#36798. When running `bin/console` almost all the command descriptions do not end with a ".". So in order to be consistent, we should remove it from the Make Bundle Commands. ![image](https://user-images.githubusercontent.com/351553/89835336-e3021b00-db64-11ea-87c9-6d2ac50f6db2.png) Thanks in again for your great work! Commits ------- 8e9a5b7 Remove trailing "." for consistency with #36798
2 parents 5bd62f2 + 8e9a5b7 commit cd9a701

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Maker/MakeDockerDatabase.php

Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ public static function getCommandName(): string
6767
public function configureCommand(Command $command, InputConfiguration $inputConfig): void
6868
{
6969
$command
70-
->setDescription('Adds a database container to your docker-compose.yaml file.')
70+
->setDescription('Adds a database container to your docker-compose.yaml file')
7171
;
7272
}
7373

src/Maker/MakeResetPassword.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ public static function getCommandName(): string
6767
public function configureCommand(Command $command, InputConfiguration $inputConfig)
6868
{
6969
$command
70-
->setDescription('Create controller, entity, and repositories for use with symfonycasts/reset-password-bundle.')
70+
->setDescription('Create controller, entity, and repositories for use with symfonycasts/reset-password-bundle')
7171
->setHelp(file_get_contents(__DIR__.'/../Resources/help/MakeResetPassword.txt'))
7272
;
7373
}

0 commit comments

Comments
 (0)
0