File tree Expand file tree Collapse file tree 2 files changed +8
-4
lines changed Expand file tree Collapse file tree 2 files changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -48,11 +48,13 @@ protected function dropTable(): void
48
48
49
49
protected function migrate (?string $ database ): void
50
50
{
51
- $ this ->call (Names::MIGRATE ,
51
+ $ this ->call (
52
+ Names::MIGRATE ,
52
53
array_filter ([
53
54
'--database ' => $ database ,
54
55
'--force ' => true ,
55
- ]));
56
+ ])
57
+ );
56
58
}
57
59
58
60
protected function getTableName (): string
Original file line number Diff line number Diff line change @@ -62,10 +62,12 @@ public function handle()
62
62
protected function prepareDatabase (): void
63
63
{
64
64
if (! $ this ->migrator ->repositoryExists ()) {
65
- $ this ->call (Names::INSTALL ,
65
+ $ this ->call (
66
+ Names::INSTALL ,
66
67
array_filter ([
67
68
'--database ' => $ this ->optionDatabase (),
68
- ]));
69
+ ])
70
+ );
69
71
}
70
72
}
71
73
}
You can’t perform that action at this time.
0 commit comments