| 1 | <?php namespace SOSTheBlack\Moip\Commands; |
||
| 6 | class MoipPaymentCommand extends Command { |
||
| 7 | |||
| 8 | /** |
||
| 9 | * The console command name. |
||
| 10 | * |
||
| 11 | * @var string |
||
| 12 | */ |
||
| 13 | protected $name = 'moip:payment'; |
||
| 14 | |||
| 15 | /** |
||
| 16 | * The console command description. |
||
| 17 | * |
||
| 18 | * @var string |
||
| 19 | */ |
||
| 20 | protected $description = 'Settings related to payment methods'; |
||
| 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() |
||
| 43 | } |
||
| 44 |