Skip to content

Commit c06979c

Browse files
authored
[5.x] Fix InstallEloquentDriver command (#11425)
1 parent 970ee2b commit c06979c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Console/Commands/InstallEloquentDriver.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ public function handle()
9090
protected function repositories(): array
9191
{
9292
if ($this->option('all')) {
93-
return $this->availableRepositories()->keys()->all();
93+
return $this->allRepositories()->keys()->all();
9494
}
9595

9696
if ($repositories = $this->option('repositories')) {
@@ -657,7 +657,7 @@ private function infoMessage(string $message): void
657657
return;
658658
}
659659

660-
$this->components->info('Configured asset containers');
660+
$this->components->info($message);
661661
}
662662

663663
private function switchToEloquentDriver(string $repository): void

0 commit comments

Comments
 (0)