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
4848
4949 protected function migrate (?string $ database ): void
5050 {
51- $ this ->call (Names::MIGRATE ,
51+ $ this ->call (
52+ Names::MIGRATE ,
5253 array_filter ([
5354 '--database ' => $ database ,
5455 '--force ' => true ,
55- ]));
56+ ])
57+ );
5658 }
5759
5860 protected function getTableName (): string
Original file line number Diff line number Diff line change @@ -62,10 +62,12 @@ public function handle()
6262 protected function prepareDatabase (): void
6363 {
6464 if (! $ this ->migrator ->repositoryExists ()) {
65- $ this ->call (Names::INSTALL ,
65+ $ this ->call (
66+ Names::INSTALL ,
6667 array_filter ([
6768 '--database ' => $ this ->optionDatabase (),
68- ]));
69+ ])
70+ );
6971 }
7072 }
7173}
You can’t perform that action at this time.
0 commit comments