Skip to content

Commit

Permalink
Merge pull request #32 from Laravel-Lang/andrey-helldar-patch-1
Browse files Browse the repository at this point in the history
Fixed Translator environments
  • Loading branch information
andrey-helldar authored Jun 28, 2024
2 parents 3140063 + 79bb22e commit a880dac
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions config/public.php
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@
'priority' => (int) env('TRANSLATION_DEEPL_PRIORITY', 2),

'credentials' => [
'key' => env('TRANSLATION_DEEPL_KEY'),
'key' => (string) env('TRANSLATION_DEEPL_KEY'),
],
],

Expand All @@ -207,8 +207,8 @@
'priority' => (int) env('TRANSLATION_YANDEX_PRIORITY', 3),

'credentials' => [
'key' => env('TRANSLATION_YANDEX_KEY'),
'folder' => env('TRANSLATION_FOLDER_ID'),
'key' => (string) env('TRANSLATION_YANDEX_KEY'),
'folder' => (string) env('TRANSLATION_YANDEX_FOLDER_ID'),
],
],
],
Expand Down

0 comments on commit a880dac

Please sign in to comment.