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.
2 parents 0b2a176 + 6953b33 commit b37300aCopy full SHA for b37300a
symfony/framework-bundle/3.3/config/bootstrap.php
@@ -12,7 +12,7 @@
12
throw new RuntimeException('Please run "composer require symfony/dotenv" to load the ".env" files configuring the application.');
13
} else {
14
$path = dirname(__DIR__).'/.env';
15
- $dotenv = new Dotenv();
+ $dotenv = new Dotenv(false);
16
17
// load all the .env files
18
if (method_exists($dotenv, 'loadEnv')) {
symfony/framework-bundle/4.2/config/bootstrap.php
- (new Dotenv())->loadEnv(dirname(__DIR__).'/.env');
+ (new Dotenv(false))->loadEnv(dirname(__DIR__).'/.env');
}
$_SERVER += $_ENV;
0 commit comments