Skip to content

Commit 4138fac

Browse files
authored
chore: fix typo in make:config command (#865)
1 parent d0f3f53 commit 4138fac

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Tempest/Console/src/Commands/MakeConfigCommand.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ final class MakeConfigCommand
2020

2121
#[ConsoleCommand(
2222
name: 'make:config',
23-
description: 'Creates a new config class',
23+
description: 'Creates a new config file',
2424
aliases: ['config:make', 'config:create', 'create:config'],
2525
)]
2626
public function __invoke(
@@ -44,7 +44,7 @@ public function __invoke(
4444
shouldOverride: $shouldOverride,
4545
);
4646

47-
$this->success(sprintf('Middleware successfully created at "%s".', $targetPath));
47+
$this->success(sprintf('Config file successfully created at "%s".', $targetPath));
4848
} catch (FileGenerationAbortedException|FileGenerationFailedException|InvalidArgumentException $e) {
4949
$this->error($e->getMessage());
5050
}

0 commit comments

Comments
 (0)