From d289dc06d34d8325d459f4099c80f151431e62a9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Zoran=20Bira=C4=8D?= Date: Tue, 6 May 2025 11:47:09 +0200 Subject: [PATCH] Fix placeholder formatting in form class name example Corrected a missing placeholder specifier in the example string for the form class name. This ensures the example displays correctly and aligns with expected formatting conventions. --- src/Maker/MakeForm.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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')) ;