From c10710c01ea3adf62ed141440380e97e88834e9f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?K=C3=A9vin=20Dunglas?= Date: Mon, 29 Oct 2018 08:11:34 +0100 Subject: [PATCH] [DotEnv] Fix loadForEnv PHPDoc --- 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 2a1d3551d4a4..6664c45f8da9 100644 --- a/src/Symfony/Component/Dotenv/Dotenv.php +++ b/src/Symfony/Component/Dotenv/Dotenv.php @@ -52,7 +52,7 @@ public function load(string $path, string ...$extraPaths): void } /** - * Loads one or several .env and the corresponding env.$env, env.local and env.$env.local files if they exist. + * Loads one or several .env and the corresponding .env.$env, .env.local and .env.$env.local files if they exist. * * .env.local is always ignored in test env because tests should produce the same results for everyone. *