1 | <?php namespace SOSTheBlack\Moip\Commands; |
||
6 | class MoipCommand extends Command { |
||
7 | |||
8 | /** |
||
9 | * The console command name. |
||
10 | * |
||
11 | * @var string |
||
12 | */ |
||
13 | protected $name = 'moip'; |
||
14 | |||
15 | /** |
||
16 | * The console command description. |
||
17 | * |
||
18 | * @var string |
||
19 | */ |
||
20 | protected $description = 'information on the commands'; |
||
21 | |||
22 | /** |
||
23 | * version od package |
||
24 | * |
||
25 | * @var string |
||
26 | **/ |
||
27 | private $version = '1.2.0'; |
||
28 | |||
29 | /** |
||
30 | * Create a new command instance. |
||
31 | */ |
||
32 | public function __construct() |
||
36 | |||
37 | /** |
||
38 | * Execute the console command. |
||
39 | * |
||
40 | * @return void |
||
41 | */ |
||
42 | public function fire() |
||
48 | |||
49 | /** |
||
50 | * Commands of package |
||
51 | * |
||
52 | * @return void |
||
53 | */ |
||
54 | private function commands() |
||
73 | |||
74 | /** |
||
75 | * information of package |
||
76 | * |
||
77 | * @return void |
||
78 | */ |
||
79 | private function information() |
||
87 | |||
88 | /** |
||
89 | * logo |
||
90 | * |
||
91 | * @return void |
||
92 | */ |
||
93 | private function logo() |
||
104 | } |
||
105 |