Skip to content

Commit 4b9ee02

Browse files
committed
Correct config section
1 parent ef72f8a commit 4b9ee02

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

src/Command/CommandHelper.php

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -383,11 +383,13 @@ public static function begin(
383383
if (count($suggestOptional) > 0) {
384384
$errorOutput->writeLineFormatted('If the excluded path can sometimes exist, append <fg=cyan>(?)</>');
385385
$errorOutput->writeLineFormatted('to its config entry to mark it as optional. Example:');
386-
$errorOutput->writeLineFormatted('<fg=cyan>excludePaths:</>');
386+
$errorOutput->writeLineFormatted('');
387+
$errorOutput->writeLineFormatted('<fg=cyan>parameters:</>');
388+
$errorOutput->writeLineFormatted("\t<fg=cyan>excludePaths:</>");
387389
foreach ($suggestOptional as $key => $suggestOptionalPaths) {
388-
$errorOutput->writeLineFormatted(sprintf(' <fg=cyan>%s:</>', $key));
390+
$errorOutput->writeLineFormatted(sprintf("\t\t<fg=cyan>%s:</>", $key));
389391
foreach ($suggestOptionalPaths as $suggestOptionalPath) {
390-
$errorOutput->writeLineFormatted(sprintf(' - <fg=cyan>%s (?)</>', $suggestOptionalPath));
392+
$errorOutput->writeLineFormatted(sprintf("\t\t\t- <fg=cyan>%s (?)</>", $suggestOptionalPath));
391393
}
392394
}
393395
$errorOutput->writeLineFormatted('');

0 commit comments

Comments
 (0)