Merge pull request #377

This commit is contained in:
symfony-flex-server[bot]
2018-03-13 21:50:25 +00:00
committed by GitHub
2 changed files with 2 additions and 2 deletions
@@ -16,7 +16,7 @@ if (!isset($_SERVER['APP_ENV'])) {
}
$env = $_SERVER['APP_ENV'] ?? 'dev';
$debug = $_SERVER['APP_DEBUG'] ?? ('prod' !== $env);
$debug = (bool) $_SERVER['APP_DEBUG'] ?? ('prod' !== $env);
if ($debug) {
umask(0000);