0
0
Fork 0
mirror of https://github.com/nextcloud/server.git synced 2025-02-27 10:06:31 +00:00

fix(trashbin): Improve documentation of since/until timestamps of restore trashbin

Signed-off-by: Joas Schilling <coding@schilljs.com>
This commit is contained in:
Joas Schilling 2024-07-30 20:33:56 +02:00
parent 17ff269036
commit bfd96b070b
No known key found for this signature in database
GPG key ID: 74434EFE0D2E2205

View file

@ -88,13 +88,13 @@ class RestoreAllFiles extends Base {
'since',
null,
InputOption::VALUE_OPTIONAL,
'Only restore files deleted after the given timestamp'
'Only restore files deleted after the given date and time, see https://www.php.net/manual/en/function.strtotime.php for more information on supported formats'
)
->addOption(
'until',
null,
InputOption::VALUE_OPTIONAL,
'Only restore files deleted before the given timestamp'
'Only restore files deleted before the given date and time, see https://www.php.net/manual/en/function.strtotime.php for more information on supported formats'
)
->addOption(
'dry-run',