From 932b29dfab0b503556b85a1cd537c1400c7fe8d6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rub=C3=A9n=20Robles?= Date: Thu, 16 Mar 2023 12:26:01 +0100 Subject: [PATCH] typo --- src/Commands/DtoMakeCommand.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Commands/DtoMakeCommand.php b/src/Commands/DtoMakeCommand.php index fa9ba4d..675f98e 100644 --- a/src/Commands/DtoMakeCommand.php +++ b/src/Commands/DtoMakeCommand.php @@ -21,7 +21,7 @@ class DtoMakeCommand extends GeneratorCommand * * @var string */ - protected $description = 'Create a new validation data transfer object'; + protected $description = 'Create a new data transfer object'; /** * The type of class being generated. @@ -63,7 +63,7 @@ protected function getDefaultNamespace($rootNamespace) protected function getOptions() { return [ - ['force', 'f', InputOption::VALUE_NONE, 'Create the class even if the rule already exists'], + ['force', 'f', InputOption::VALUE_NONE, 'Create the class even if the data transfer object already exists'], ]; } }