Skip to content

Commit

Permalink
Merge pull request #26 from Laravel-Lang/2.x
Browse files Browse the repository at this point in the history
Fixed an error when calling the `artisan about` console command
  • Loading branch information
andrey-helldar authored Dec 17, 2023
2 parents 243ab93 + 96bcac8 commit 4947204
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Concerns/About.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ trait About
protected function registerAbout(): void
{
$this->pushInformation(fn () => [
'Installed' => $this->implode(Locales::installed()),
'Protected' => $this->implode(Locales::protects()),
'Installed' => $this->implode(Locales::raw()->installed()),
'Protected' => $this->implode(Locales::raw()->protects()),

'Locales Version' => $this->getPackageVersion('laravel-lang/locales'),
]);
Expand Down

0 comments on commit 4947204

Please sign in to comment.