Skip to content

Commit c9617ba

Browse files
committed
Minor tweaks - removing extra "." in text and making twig extension
interactive
1 parent 7f02ed1 commit c9617ba

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/Maker/MakeFunctionalTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ public function configureCommand(Command $command, InputConfiguration $inputConf
3939
{
4040
$command
4141
->setDescription('Creates a new functional test class')
42-
->addArgument('name', InputArgument::OPTIONAL, 'The name of the functional test class (e.g. <fg=yellow>DefaultControllerTest</>).')
42+
->addArgument('name', InputArgument::OPTIONAL, 'The name of the functional test class (e.g. <fg=yellow>DefaultControllerTest</>)')
4343
->setHelp(file_get_contents(__DIR__.'/../Resources/help/MakeFunctionalTest.txt'))
4444
;
4545
}

src/Maker/MakeTwigExtension.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ public function configureCommand(Command $command, InputConfiguration $inputConf
3838
{
3939
$command
4040
->setDescription('Creates a new Twig extension class')
41-
->addArgument('name', InputArgument::OPTIONAL, 'The name of the Twig extension class (e.g. <fg=yellow>AppExtension</>).', 'AppExtension')
41+
->addArgument('name', InputArgument::OPTIONAL, 'The name of the Twig extension class (e.g. <fg=yellow>AppExtension</>)')
4242
->setHelp(file_get_contents(__DIR__.'/../Resources/help/MakeTwigExtension.txt'))
4343
;
4444
}

src/Maker/MakeUnitTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ public function configureCommand(Command $command, InputConfiguration $inputConf
3737
{
3838
$command
3939
->setDescription('Creates a new unit test class')
40-
->addArgument('name', InputArgument::OPTIONAL, 'The name of the unit test class (e.g. <fg=yellow>UtilTest</>).')
40+
->addArgument('name', InputArgument::OPTIONAL, 'The name of the unit test class (e.g. <fg=yellow>UtilTest</>)')
4141
->setHelp(file_get_contents(__DIR__.'/../Resources/help/MakeUnitTest.txt'))
4242
;
4343
}

0 commit comments

Comments
 (0)