From 6601599283ea285929f55ae0e3683cfbd8dd0250 Mon Sep 17 00:00:00 2001 From: Boy132 Date: Mon, 4 Aug 2025 11:31:50 +0200 Subject: [PATCH] fix typo --- app/Console/Commands/Plugin/CreatePluginCommand.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Console/Commands/Plugin/CreatePluginCommand.php b/app/Console/Commands/Plugin/CreatePluginCommand.php index a10680c11..ef07dcf2a 100644 --- a/app/Console/Commands/Plugin/CreatePluginCommand.php +++ b/app/Console/Commands/Plugin/CreatePluginCommand.php @@ -36,7 +36,7 @@ class CreatePluginCommand extends Command return; } - $author = $this->option('$author') ?? $this->ask('$author'); + $author = $this->option('author') ?? $this->ask('author'); $namespace = $author . '\\' . studly_case($name); $class = studly_case($name . 'Plugin');