[DotEnv] Remove usePutEnv property default value

The value is already set in the constructor (and changes in 5.0) and the class is final.
This commit is contained in:
Tugdual Saunier 2019-12-06 11:59:41 +01:00
parent a672132392
commit 362c339fa6
No known key found for this signature in database
GPG Key ID: 404D33416977EB39

View File

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