Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 56fac41

Browse files
committed
minor #34850 [DotEnv] Remove usePutEnv property default value (tucksaun)
This PR was merged into the 4.3 branch. Discussion ---------- [DotEnv] Remove `usePutEnv` property default value | Q | A | ------------- | --- | Branch? | 4.3 | Bug fix? | no | New feature? | no | Deprecations? | no | Tickets | n/a | License | MIT | Doc PR | n/a The default value is already set in the constructor (and changes in 5.0, see https://github.com/symfony/symfony/pull/31957/files#diff-3dc82e6e990428b0c71cf2112d02269fR44) and the class is final. Commits ------- 362c339 [DotEnv] Remove `usePutEnv` property default value
2 parents a672132 + 362c339 commit 56fac41

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Symfony/Component/Dotenv/Dotenv.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ final class Dotenv
3535
private $data;
3636
private $end;
3737
private $values;
38-
private $usePutenv = true;
38+
private $usePutenv;
3939

4040
/**
4141
* @var bool If `putenv()` should be used to define environment variables or not.

0 commit comments

Comments
 (0)