File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ class Dotenv
35
35
public function __construct ($ path , $ file = '.env ' )
36
36
{
37
37
$ this ->filePath = $ this ->getFilePath ($ path , $ file );
38
- $ this ->loader = new Loader ($ this ->filePath , $ immutable = true );
38
+ $ this ->loader = new Loader ($ this ->filePath , true );
39
39
}
40
40
41
41
/**
@@ -45,7 +45,7 @@ public function __construct($path, $file = '.env')
45
45
*/
46
46
public function load ()
47
47
{
48
- $ this ->loader = new Loader ($ this ->filePath , $ immutable = true );
48
+ $ this ->loader = new Loader ($ this ->filePath , true );
49
49
50
50
return $ this ->loader ->load ();
51
51
}
@@ -57,7 +57,7 @@ public function load()
57
57
*/
58
58
public function overload ()
59
59
{
60
- $ this ->loader = new Loader ($ this ->filePath , $ immutable = false );
60
+ $ this ->loader = new Loader ($ this ->filePath , false );
61
61
62
62
return $ this ->loader ->load ();
63
63
}
You can’t perform that action at this time.
0 commit comments