Skip to content

Commit 9a84792

Browse files
authored
Add an example for adding a column in activity:list command help (#1579)
1 parent eec186f commit 9a84792

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/Command/Activity/ActivityListCommand.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,8 @@ protected function configure()
7272
->addExample('List recent pushes', '--type push')
7373
->addExample('List all recent activities excluding crons and redeploys', "--exclude-type '*.cron,*.backup*'")
7474
->addExample('List pushes made before 15 March', '--type push --start 2015-03-15')
75-
->addExample('List up to 25 incomplete activities', '--limit 25 -i');
75+
->addExample('List up to 25 incomplete activities', '--limit 25 -i')
76+
->addExample('Include the activity type in the table', '--columns +type');
7677
}
7778

7879
protected function execute(InputInterface $input, OutputInterface $output)

0 commit comments

Comments
 (0)