File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change 12
12
throw new RuntimeException ('Please run "composer require symfony/dotenv" to load the ".env" files configuring the application. ' )
ADC6
;
13
13
} else {
14
14
$ path = dirname (__DIR__ ).'/.env ' ;
15
- $ dotenv = new Dotenv ();
15
+ $ dotenv = new Dotenv (false );
16
16
17
17
// load all the .env files
18
18
if (method_exists ($ dotenv , 'loadEnv ' )) {
Original file line number Diff line number Diff line change 12
12
throw new RuntimeException ('Please run "composer require symfony/dotenv" to load the ".env" files configuring the application. ' );
13
13
} else {
14
14
// load all the .env files
15
- (new Dotenv ())->loadEnv (dirname (__DIR__ ).'/.env ' );
15
+ (new Dotenv (false ))->loadEnv (dirname (__DIR__ ).'/.env ' );
16
16
}
17
17
18
18
$ _SERVER += $ _ENV ;
You can’t perform that action at this time.
0 commit comments