Skip to content

Commit

Permalink
chore: fix typo in make:config command (#865)
Browse files Browse the repository at this point in the history
  • Loading branch information
gturpin-dev authored Dec 18, 2024
1 parent d0f3f53 commit 4138fac
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Tempest/Console/src/Commands/MakeConfigCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand All @@ -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());
}
Expand Down

0 comments on commit 4138fac

Please sign in to comment.