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')); } /**