diff --git a/src/Maker/MakeForm.php b/src/Maker/MakeForm.php index 0296f3cdf..a5d36ab68 100644 --- a/src/Maker/MakeForm.php +++ b/src/Maker/MakeForm.php @@ -49,7 +49,7 @@ public function configureCommand(Command $command, InputConfiguration $inputConf $command ->setDescription('Creates a new form class') ->addArgument('name', InputArgument::OPTIONAL, sprintf('The name of the form class (e.g. %sType)', Str::asClassName(Str::getRandomTerm()))) - ->addArgument('bound-class', InputArgument::OPTIONAL, 'The name of Entity or custom model class that the new form will be bound to (empty for none)') + ->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(file_get_contents(__DIR__.'/../Resources/help/MakeForm.txt')) ;