Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ca9db66 commit eeea242Copy full SHA for eeea242
load.environment.php
@@ -10,6 +10,9 @@
10
11
/**
12
* Load any .env file. See /.env.example.
13
+ *
14
+ * Drupal has no official method for loading environment variables and uses
15
+ * getenv() in some places.
16
*/
-$dotenv = Dotenv::createImmutable(__DIR__);
-$dotenv->safeLoad();
17
+$dotenv = Dotenv::createUnsafeImmutable(__DIR__);
18
+$dotenv->load();
0 commit comments