Skip to content
This repository was archived by the owner on Feb 18, 2023. It is now read-only.

Commit 0d19999

Browse files
committed
can't get it right
1 parent e6c9c52 commit 0d19999

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

app/Console/Commands/ResetDemoApp.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ public function handle()
3535
{
3636
$service = app(AppInstallationService::class);
3737
$this->info('cleaning up');
38-
$this->call('migrate:refresh', ['--force']);
38+
$this->call('migrate:refresh', ['--force' => true]);
3939
$this->call('passport:install');
4040
$this->info('Installing the app');
4141
$service->installApp([
@@ -45,7 +45,7 @@ public function handle()
4545
'password_confirmation' => 'secret123456789',
4646
]);
4747
$this->info('Seed the database');
48-
$this->call('db:seed', ['--force']);
48+
$this->call('db:seed', ['--force' => true]);
4949
$this->info('Done');
5050
}
5151
}

0 commit comments

Comments
 (0)