InterNACHI / modular

Modularize your Laravel application
MIT License
759 stars 63 forks source link

fixed make command to stop removing signature #57

Closed dcblogdev closed 7 months ago

dcblogdev commented 10 months ago
make:command DemoCommand --module=demo

was creating a signature in the format of:

protected $demo:demo-command;

but should be:

protected $signature = 'demo:demo-command';

I've edited the find array to only look and replace command:name and app:{$cli_name}