Skip to content

Commit

Permalink
Merge pull request #34 from Laravel-Lang/1.x
Browse files Browse the repository at this point in the history
Fixed an error in assigning a value to a new parameter
  • Loading branch information
andrey-helldar authored Sep 4, 2024
2 parents ee2ab72 + df5e6e9 commit 6836060
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Services/Config.php
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ protected function models(): ModelsData
protected function modelsFilter(): ModelsFilterData
{
return new ModelsFilterData(
enabled: $this->value(Name::Shared, 'models.filter.enabled'),
enabled: (bool) $this->value(Name::Shared, 'models.filter.enabled'),
);
}

Expand Down

0 comments on commit 6836060

Please sign in to comment.