From 2c044cc086f02a09c54208529a6aa539b2ff1afb Mon Sep 17 00:00:00 2001 From: jrfnl Date: Mon, 5 May 2025 06:31:41 +0200 Subject: [PATCH] Help: improve information about requesting reports The help info did not mention that multiple reports can be requested in one go. Fixed now. --- src/Util/Help.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/Util/Help.php b/src/Util/Help.php index 68d7976782..e125d3aaa7 100644 --- a/src/Util/Help.php +++ b/src/Util/Help.php @@ -487,8 +487,9 @@ private function getAllOptions() $options['Reporting Options'] = [ 'report' => [ - 'argument' => '--report=', - 'description' => 'Print either the "full", "xml", "checkstyle", "csv", "json", "junit", "emacs", "source", "summary", "diff", "svnblame", "gitblame", "hgblame", "notifysend" or "performance" report or specify the path to a custom report class. By default, the "full" report is displayed.', + 'argument' => '--report=', + 'description' => 'A comma-separated list of reports to print. Available reports: "full", "xml", "checkstyle", "csv", "json", "junit", "emacs", "source", "summary", "diff", "svnblame", "gitblame", "hgblame", "notifysend" or "performance".'."\n" + .'Or specify the path to a custom report class. By default, the "full" report is displayed.', ], 'report-file' => [ 'argument' => '--report-file=',