Yaffs site version 1.1
[yaffs-website] / vendor / drupal / console / src / Command / Config / SettingsDebugCommand.php
index 15c7b5e8a3096cc47b06f19a4f929d64e1201ebb..57367e80ba2a4e1a0dc16b9a5d006acda3665744 100644 (file)
@@ -65,8 +65,9 @@ class SettingsDebugCommand extends Command
         $io->newLine();
 
         foreach ($settingKeys as $settingKey) {
-            $io->comment($settingKey, false);
-            $io->simple(Yaml::encode($this->settings->get($settingKey)));
+            $settingValue = $this->settings->get($settingKey);
+            $io->comment($settingKey . ': ', is_array($settingValue));
+            $io->write(Yaml::encode($settingValue));
         }
         $io->newLine();
     }