From baa11acfa83f1d423fa8facb060a831bead12ed6 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 --- src/Foundation/Console/InfoCommand.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Foundation/Console/InfoCommand.php b/src/Foundation/Console/InfoCommand.php index 291c88343..fe81eb624 100644 --- a/src/Foundation/Console/InfoCommand.php +++ b/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')); } /**