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
-------

362c339fa6 [DotEnv] Remove `usePutEnv` property default value
This commit is contained in:
Fabien Potencier 2019-12-06 13:12:56 +01:00
commit 56fac414ff
1 changed files with 1 additions and 1 deletions

View File

@ -35,7 +35,7 @@ final class Dotenv
private $data;
private $end;
private $values;
private $usePutenv = true;
private $usePutenv;
/**
* @var bool If `putenv()` should be used to define environment variables or not.