Skip to content

Commit

Permalink
[5.x] Fix InstallEloquentDriver command (#11425)
Browse files Browse the repository at this point in the history
  • Loading branch information
aerni authored Feb 6, 2025
1 parent 970ee2b commit c06979c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Console/Commands/InstallEloquentDriver.php
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ public function handle()
protected function repositories(): array
{
if ($this->option('all')) {
return $this->availableRepositories()->keys()->all();
return $this->allRepositories()->keys()->all();
}

if ($repositories = $this->option('repositories')) {
Expand Down Expand Up @@ -657,7 +657,7 @@ private function infoMessage(string $message): void
return;
}

$this->components->info('Configured asset containers');
$this->components->info($message);
}

private function switchToEloquentDriver(string $repository): void
Expand Down

0 comments on commit c06979c

Please sign in to comment.