From 31f9738a39229e0f6a1df9333f7fa4b34150b0de Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gr=C3=A9goire=20Pineau?= Date: Wed, 14 Mar 2018 10:28:02 +0100 Subject: [PATCH] Fixed typo --- symfony/framework-bundle/3.3/public/index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/symfony/framework-bundle/3.3/public/index.php b/symfony/framework-bundle/3.3/public/index.php index e173fb9d..10878ce5 100644 --- a/symfony/framework-bundle/3.3/public/index.php +++ b/symfony/framework-bundle/3.3/public/index.php @@ -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);