Fixed typo

This commit is contained in:
Grégoire Pineau
2018-03-14 10:28:02 +01:00
parent e5147f32f0
commit 31f9738a39
@@ -16,7 +16,7 @@ if (!isset($_SERVER['APP_ENV'])) {
}
$env = $_SERVER['APP_ENV'] ?? 'dev';
$debug = (bool) $_SERVER['APP_DEBUG'] ?? ('prod' !== $env);
$debug = (bool) ($_SERVER['APP_DEBUG'] ?? ('prod' !== $env));
if ($debug) {
umask(0000);