From 362c339fa635b25a9dc815de4ac7f97be72ef8e4 Mon Sep 17 00:00:00 2001 From: Tugdual Saunier Date: Fri, 6 Dec 2019 11:59:41 +0100 Subject: [PATCH] [DotEnv] Remove `usePutEnv` property default value The value is already set in the constructor (and changes in 5.0) and the class is final. --- src/Symfony/Component/Dotenv/Dotenv.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Symfony/Component/Dotenv/Dotenv.php b/src/Symfony/Component/Dotenv/Dotenv.php index 5c41d81d96..613d9f8246 100644 --- a/src/Symfony/Component/Dotenv/Dotenv.php +++ b/src/Symfony/Component/Dotenv/Dotenv.php @@ -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.