Skip to content

Commit

Permalink
resolved signature not being properly assigned when creating a comman…
Browse files Browse the repository at this point in the history
…d for a module (#76)

Co-authored-by: Chris Morrell <[email protected]>
  • Loading branch information
WebKenth and inxilpro authored Mar 18, 2024
1 parent 18f07e7 commit 2d53e7e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Console/Commands/Make/MakeCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ protected function replaceClass($stub, $name)
"signature = 'app:{$cli_name}'",
];

$stub = str_replace($find, "{$module->name}:{$cli_name}", $stub);
$stub = str_replace($find, "signature = '{$module->name}:{$cli_name}'", $stub);
}

return $stub;
Expand Down

0 comments on commit 2d53e7e

Please sign in to comment.