1 | <?php |
||
9 | class EnableCommand extends Command |
||
10 | { |
||
11 | /** |
||
12 | * The console command name. |
||
13 | * |
||
14 | * @var string |
||
15 | */ |
||
16 | protected $name = 'module:enable'; |
||
17 | |||
18 | /** |
||
19 | * The console command description. |
||
20 | * |
||
21 | * @var string |
||
22 | */ |
||
23 | protected $description = 'Enable the specified module.'; |
||
24 | |||
25 | /** |
||
26 | * Execute the console command. |
||
27 | */ |
||
28 | 1 | public function handle() |
|
48 | |||
49 | /** |
||
50 | 127 | * enableAll |
|
51 | * |
||
52 | * @return void |
||
53 | */ |
||
54 | public function enableAll() |
||
69 | |||
70 | /** |
||
71 | * Get the console command arguments. |
||
72 | * |
||
73 | * @return array |
||
74 | */ |
||
75 | protected function getArguments() |
||
81 | } |
||
82 |