Total Complexity | 4 |
Total Lines | 46 |
Duplicated Lines | 0 % |
Coverage | 15.38% |
Changes | 0 |
1 | <?php |
||
10 | class ModuleMakeCommand extends Command |
||
11 | { |
||
12 | /** |
||
13 | * The console command name. |
||
14 | * |
||
15 | * @var string |
||
16 | */ |
||
17 | protected $name = 'larapi:make:module'; |
||
18 | |||
19 | /** |
||
20 | * The console command description. |
||
21 | * |
||
22 | * @var string |
||
23 | */ |
||
24 | protected $description = 'Create a new module.'; |
||
25 | |||
26 | /** |
||
27 | * Execute the console command. |
||
28 | */ |
||
29 | public function handle() |
||
37 | } |
||
38 | |||
39 | protected function handleExistingModule($moduleName) |
||
44 | } |
||
45 | } |
||
46 | |||
47 | /** |
||
48 | * Get the console command arguments. |
||
49 | * |
||
50 | * @return array |
||
51 | */ |
||
52 | 26 | protected function getArguments() |
|
59 |