From 971ecc994f308ad8ffac432e22a1c8117843f926 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20Sevilla=20Mart=C3=ADn?= Date: Wed, 21 Mar 2018 20:00:14 -0400 Subject: [PATCH] Fix "Debug mode" in InfoCommand not showing --- framework/core/src/Foundation/Console/InfoCommand.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/framework/core/src/Foundation/Console/InfoCommand.php b/framework/core/src/Foundation/Console/InfoCommand.php index 291c88343..fe81eb624 100644 --- a/framework/core/src/Foundation/Console/InfoCommand.php +++ b/framework/core/src/Foundation/Console/InfoCommand.php @@ -72,7 +72,7 @@ class InfoCommand extends AbstractCommand $this->info('Base URL: '.$this->config['url']); $this->info('Installation path: '.getcwd()); - $this->info('Debug mode '.$this->config['debug'] ? 'ON' : 'off'); + $this->info('Debug mode '.($this->config['debug'] ? 'ON' : 'off')); } /**