Skip to content

Commit

Permalink
Merge pull request #343 from mohamedsabil83/use-dot-env
Browse files Browse the repository at this point in the history
Ability to set some configurations from .env file
  • Loading branch information
andrey-helldar committed Nov 18, 2023
2 parents 382d713 + 230a6b0 commit 391086a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions config/public.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,15 +32,15 @@
* By default, `false`.
*/

'inline' => false,
'inline' => (bool) env('LANG_PUBLISHER_INLINE', false),

/*
* Do arrays need to be aligned by keys before processing arrays?
*
* By default, true
*/

'align' => true,
'align' => (bool) env('LANG_PUBLISHER_ALIGN', true),

/*
* This option determines the mechanism for converting translation
Expand Down

0 comments on commit 391086a

Please sign in to comment.