We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 91ab4ca commit b2e4aeaCopy full SHA for b2e4aea
Library/Config.php
@@ -21,7 +21,7 @@ private static function parseEnvProperties(): array
21
$envProperties = array();
22
$vars = file(Config::$baseDir . '/../.env', FILE_IGNORE_NEW_LINES);
23
foreach ($vars as $var) {
24
- if(substr($var, 0, 2) === '##') continue;
+ if (substr($var, 0, 2) === '##') continue;
25
$envProperties[explode('=', $var)[0]] = explode('=', $var)[1];
26
}
27
return $envProperties;
@@ -45,4 +45,4 @@ public static function getEnvProperties($property = '')
45
46
47
48
-}
+}
0 commit comments