From c8e561dbf5edd552d644063dcfb970a83455f320 Mon Sep 17 00:00:00 2001 From: Eder Soares Date: Mon, 4 Jan 2021 08:40:13 -0300 Subject: [PATCH] =?UTF-8?q?Utiliza=20m=C3=A9todo=20correto=20para=20instan?= =?UTF-8?q?ciar=20Dotenv?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- public/install.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/install.php b/public/install.php index 77fd763498..f1e9a34b3d 100644 --- a/public/install.php +++ b/public/install.php @@ -67,7 +67,7 @@ function boolIcon(bool $bool): string $dbCheck = false; if ($envExists) { - Dotenv\Dotenv::create($rootDir)->load(); + Dotenv\Dotenv::createImmutable($rootDir)->load(); $dbCheck = $installer->checkDatabaseConnection(); $isInstalled = $installer->isInstalled(); }