From cabcf667842ba221cc20cb0c1292b29522617273 Mon Sep 17 00:00:00 2001 From: Nicholas English <30304307+Nenglish7@users.noreply.github.com> Date: Tue, 2 Jan 2018 23:24:31 -0500 Subject: [PATCH] Output strings --- src/Env.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Env.php b/src/Env.php index b9e8e97..fffbfaf 100644 --- a/src/Env.php +++ b/src/Env.php @@ -79,7 +79,7 @@ public static function getConfig(string $section = null, string $variable = null { if (!is_null($variable) && $nVariable == strtoupper($variable)) { - return $value; + return strval($value); } if (!$variable || is_null($variable)) {