1 | <?php |
||
9 | class AddonStatusCommand extends Command |
||
10 | { |
||
11 | /** |
||
12 | * The console command signature. |
||
13 | * |
||
14 | * @var string |
||
15 | */ |
||
16 | protected $signature = 'addon:status'; |
||
17 | |||
18 | /** |
||
19 | * The console command description. |
||
20 | * |
||
21 | * @var string |
||
22 | */ |
||
23 | protected $description = 'List up addon information'; |
||
24 | |||
25 | /** |
||
26 | * Execute the console command. |
||
27 | * |
||
28 | * @return mixed |
||
29 | */ |
||
30 | 1 | public function handle(Filesystem $filesystem, AddonEnvironment $env) |
|
53 | |||
54 | 1 | protected function dump($addon) |
|
58 | } |
||
59 |