Improved command flag description

This commit is contained in:
Alejandro Celaya 2020-07-14 15:31:18 +02:00
parent 5f9b629676
commit 6be0310933

View File

@ -82,7 +82,13 @@ class ListShortUrlsCommand extends AbstractWithDateRangeCommand
'The field from which we want to order by. Pass ASC or DESC separated by a comma',
)
->addOption('showTags', null, InputOption::VALUE_NONE, 'Whether to display the tags or not')
->addOption('all', 'a', InputOption::VALUE_NONE, 'Disables pagination and just displays all existing URLs');
->addOption(
'all',
'a',
InputOption::VALUE_NONE,
'Disables pagination and just displays all existing URLs. Caution! If the amount of short URLs is big,'
. ' this may end up failing due to memory usage.',
);
}
protected function getStartDateDesc(): string