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');