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