1 | <?php namespace SOSTheBlack\Moip\Commands; |
||
6 | class MoipAuthCommand extends Command { |
||
7 | |||
8 | /** |
||
9 | * The console command name. |
||
10 | * |
||
11 | * @var string |
||
12 | */ |
||
13 | protected $name = 'moip:auth'; |
||
14 | |||
15 | /** |
||
16 | * The console command description. |
||
17 | * |
||
18 | * @var string |
||
19 | */ |
||
20 | protected $description = 'Sets environment and credentials'; |
||
21 | |||
22 | /** |
||
23 | * Create a new command instance. |
||
24 | */ |
||
25 | public function __construct() |
||
29 | |||
30 | /** |
||
31 | * Execute the console command. |
||
32 | * |
||
33 | * @return void |
||
34 | */ |
||
35 | public function fire() |
||
46 | } |
||
47 |