1 | <?php |
||
8 | class ValiableListCommand extends Command |
||
9 | { |
||
10 | protected $name = 'valiable:list'; |
||
11 | protected $description = 'show valiable list'; |
||
12 | protected $valiable; |
||
13 | protected $filesystem; |
||
14 | |||
15 | 2 | public function __construct(Valiable $valiable) |
|
20 | |||
21 | 1 | public function handle() |
|
22 | { |
||
23 | 1 | return $this->fire(); |
|
24 | } |
||
25 | |||
26 | 1 | public function fire() |
|
41 | } |
||
42 | |||
43 |