From 4138facea364f0a0f36347337e9f8e832ffc97cb Mon Sep 17 00:00:00 2001 From: Guillaume Turpin Date: Wed, 18 Dec 2024 12:01:12 +0100 Subject: [PATCH] chore: fix typo in `make:config` command (#865) --- src/Tempest/Console/src/Commands/MakeConfigCommand.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Tempest/Console/src/Commands/MakeConfigCommand.php b/src/Tempest/Console/src/Commands/MakeConfigCommand.php index b1e6a2b99..f33e56291 100644 --- a/src/Tempest/Console/src/Commands/MakeConfigCommand.php +++ b/src/Tempest/Console/src/Commands/MakeConfigCommand.php @@ -20,7 +20,7 @@ final class MakeConfigCommand #[ConsoleCommand( name: 'make:config', - description: 'Creates a new config class', + description: 'Creates a new config file', aliases: ['config:make', 'config:create', 'create:config'], )] public function __invoke( @@ -44,7 +44,7 @@ public function __invoke( shouldOverride: $shouldOverride, ); - $this->success(sprintf('Middleware successfully created at "%s".', $targetPath)); + $this->success(sprintf('Config file successfully created at "%s".', $targetPath)); } catch (FileGenerationAbortedException|FileGenerationFailedException|InvalidArgumentException $e) { $this->error($e->getMessage()); }