diff --git a/src/Maker/MakeForm.php b/src/Maker/MakeForm.php index c6738e8f6..9e65dd394 100644 --- a/src/Maker/MakeForm.php +++ b/src/Maker/MakeForm.php @@ -51,7 +51,7 @@ public static function getCommandDescription(): string public function configureCommand(Command $command, InputConfiguration $inputConfig): void { $command - ->addArgument('name', InputArgument::OPTIONAL, \sprintf('The name of the form class (e.g. %Form)', Str::asClassName(Str::getRandomTerm()))) + ->addArgument('name', InputArgument::OPTIONAL, \sprintf('The name of the form class (e.g. %sForm)', Str::asClassName(Str::getRandomTerm()))) ->addArgument('bound-class', InputArgument::OPTIONAL, 'The name of Entity or fully qualified model class name that the new form will be bound to (empty for none)') ->setHelp($this->getHelpFileContents('MakeForm.txt')) ;