Skip to content

Commit b2e4aea

Browse files
authored
Update Config.php
1 parent 91ab4ca commit b2e4aea

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Library/Config.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ private static function parseEnvProperties(): array
2121
$envProperties = array();
2222
$vars = file(Config::$baseDir . '/../.env', FILE_IGNORE_NEW_LINES);
2323
foreach ($vars as $var) {
24-
if(substr($var, 0, 2) === '##') continue;
24+
if (substr($var, 0, 2) === '##') continue;
2525
$envProperties[explode('=', $var)[0]] = explode('=', $var)[1];
2626
}
2727
return $envProperties;
@@ -45,4 +45,4 @@ public static function getEnvProperties($property = '')
4545
}
4646
}
4747

48-
}
48+
}

0 commit comments

Comments
 (0)