| Total Complexity | 2 |
| Total Lines | 27 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 9 | class ModuleMakeCommand extends Command |
||
| 10 | { |
||
| 11 | /** @var string */ |
||
| 12 | protected $signature = 'module:make |
||
| 13 | {name* : The name(s) of modules to create} |
||
| 14 | {--p|plain : Generate a plain module (without some resources)} |
||
| 15 | {--force : Force the module to be generated if the module already exists} |
||
| 16 | {--d|disabled : Do not enable the module at creation}'; |
||
| 17 | |||
| 18 | /** @var string */ |
||
| 19 | protected $description = 'Create a new module.'; |
||
| 20 | |||
| 21 | public function handle(): void |
||
| 39 |