| 1 | <?php namespace SOSTheBlack\Moip\Commands; |
||
| 5 | class MoipMigrateCommand extends Command { |
||
| 6 | |||
| 7 | /** |
||
| 8 | * The console command name. |
||
| 9 | * |
||
| 10 | * @var string |
||
| 11 | */ |
||
| 12 | protected $name = 'moip:migrate'; |
||
| 13 | |||
| 14 | /** |
||
| 15 | * The console command description. |
||
| 16 | * |
||
| 17 | * @var string |
||
| 18 | */ |
||
| 19 | protected $description = 'Running migrations of package'; |
||
| 20 | |||
| 21 | /** |
||
| 22 | * Create a new command instance. |
||
| 23 | */ |
||
| 24 | public function __construct() |
||
| 28 | |||
| 29 | /** |
||
| 30 | * Execute the console command. |
||
| 31 | * |
||
| 32 | * @return void |
||
| 33 | */ |
||
| 34 | public function fire() |
||
| 40 | } |
||
| 41 |