Skip to content

Commit

Permalink
[config:settings:debug] Improve output add new line. (#3356)
Browse files Browse the repository at this point in the history
  • Loading branch information
jmolivas committed Jun 22, 2017
1 parent 20b64d5 commit 302ebe0
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/Command/Config/SettingsDebugCommand.php
Expand Up @@ -68,6 +68,9 @@ protected function execute(InputInterface $input, OutputInterface $output)
$settingValue = $this->settings->get($settingKey);
$io->comment($settingKey . ': ', is_array($settingValue));
$io->write(Yaml::encode($settingValue));
if (!is_array($settingValue)) {
$io->newLine();
}
}
$io->newLine();
}
Expand Down

0 comments on commit 302ebe0

Please sign in to comment.