1 | <?php |
||
10 | class MigrateRefreshCommand extends Command |
||
11 | { |
||
12 | use ModuleCommandTrait; |
||
13 | |||
14 | /** |
||
15 | * The console command name. |
||
16 | * |
||
17 | * @var string |
||
18 | */ |
||
19 | protected $name = 'module:migrate-refresh'; |
||
20 | |||
21 | /** |
||
22 | * The console command description. |
||
23 | * |
||
24 | * @var string |
||
25 | */ |
||
26 | protected $description = 'Rollback & re-migrate the modules migrations.'; |
||
27 | |||
28 | /** |
||
29 | * Execute the console command. |
||
30 | */ |
||
31 | public function fire() |
||
51 | |||
52 | /** |
||
53 | * Get the console command arguments. |
||
54 | * |
||
55 | * @return array |
||
56 | */ |
||
57 | 55 | protected function getArguments() |
|
63 | |||
64 | /** |
||
65 | * Get the console command options. |
||
66 | * |
||
67 | * @return array |
||
68 | */ |
||
69 | 55 | protected function getOptions() |
|
77 | } |
||
78 |