1 | <?php |
||
11 | class Composer extends Command |
||
12 | { |
||
13 | /** |
||
14 | * The console command name. |
||
15 | * |
||
16 | * @var string |
||
17 | */ |
||
18 | protected $name = 'composer'; |
||
19 | |||
20 | /** |
||
21 | * The console command description. |
||
22 | * |
||
23 | * @var string |
||
24 | */ |
||
25 | protected $description = 'composer'; |
||
26 | |||
27 | /** |
||
28 | * handle. |
||
29 | */ |
||
30 | public function handle() |
||
39 | |||
40 | /** |
||
41 | * Get the console command options. |
||
42 | * |
||
43 | * @return array |
||
44 | */ |
||
45 | protected function getOptions(): array |
||
51 | } |
||
52 |