Skip to content

Commit 84b901c

Browse files
committed
Update code-style 💻
1 parent e399d51 commit 84b901c

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

src/Console/Fresh.php

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff 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

src/Console/Migrate.php

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff 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
}

0 commit comments

Comments
 (0)