Skip to content

Commit

Permalink
Merge pull request #41 from kschroeder/develop
Browse files Browse the repository at this point in the history
Changed the list keys to put the description on a separate line to ma…
  • Loading branch information
kschroeder authored Feb 23, 2017
2 parents 5dd555e + 39cf569 commit 471adc0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Console/Command/ConfigurationListKeys.php
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ protected function execute(InputInterface $input, OutputInterface $output)
$sectionId = (string)$parent[0]['id'];
$description = '';
if (isset($element->description)) {
$description = sprintf(' (%s)', (string)$element->description);
$description = sprintf('\n (%s)', (string)$element->description);
}

$out = sprintf('%s/%s/%s%s', $sectionId, $groupId, $elementId, $description);
Expand Down

0 comments on commit 471adc0

Please sign in to comment.