You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
minor symfony#17267 Add hint about variables_order ini setting required (DracoBlue)
This PR was submitted for the 6.1 branch but it was merged into the 6.2 branch instead.
Discussion
----------
Add hint about variables_order ini setting required
I read about _real environment variables always winning_, when using dotenv - but my setup did not work like this. And I noticed that my [variables_order](https://www.php.net/manual/en/ini.core.php#ini.variables-order) ini setting was set to the default of debian production settings, which does not expose `$_ENV` by default.
Thus I added a sentence right behind stating that this depends on `$_ENV` superglobal being filled, which also needs [variables_order](https://www.php.net/manual/en/ini.core.php#ini.variables-order) to contain an uppercase `E`.
Commits
-------
ee02b68 Add hint about variables_order ini setting required
0 commit comments