1 | <?php |
||
7 | class ComponentMakeCommand extends GeneratorCommand |
||
8 | { |
||
9 | /** |
||
10 | * The name and signature of the console command. |
||
11 | * |
||
12 | * @var string |
||
13 | */ |
||
14 | protected $signature = 'make:component'; |
||
15 | |||
16 | /** |
||
17 | * The console command description. |
||
18 | * |
||
19 | * @var string |
||
20 | */ |
||
21 | protected $description = 'Create a new component class(ScoAdmin)'; |
||
22 | |||
23 | protected $type = 'Component'; |
||
24 | |||
25 | protected function getStub() |
||
29 | |||
30 | protected function getDefaultNamespace($rootNamespace) |
||
34 | } |
||
35 |