1 | <?php |
||
9 | class UpdateCommand extends ComponentCommand |
||
10 | { |
||
11 | use ComponentCommandTrait; |
||
12 | |||
13 | /** |
||
14 | * The console command name. |
||
15 | * |
||
16 | * @var string |
||
17 | */ |
||
18 | protected $name = 'component:update'; |
||
19 | |||
20 | /** |
||
21 | * The console command description. |
||
22 | * |
||
23 | * @var string |
||
24 | */ |
||
25 | protected $description = 'Update dependencies for the specified component or for all components.'; |
||
26 | |||
27 | /** |
||
28 | * Execute the console command. |
||
29 | * |
||
30 | * @return mixed |
||
31 | */ |
||
32 | public function fire() |
||
38 | |||
39 | /** |
||
40 | * Get the console command arguments. |
||
41 | * |
||
42 | * @return array |
||
43 | */ |
||
44 | protected function getArguments() |
||
50 | } |
||
51 |