mirror of
https://github.com/nextcloud/server.git
synced 2026-04-23 07:08:34 -04:00
Add missing return
Signed-off-by: Joas Schilling <coding@schilljs.com>
This commit is contained in:
parent
d7c0b9cced
commit
3e0cfa6c32
1 changed files with 1 additions and 1 deletions
|
|
@ -74,7 +74,7 @@ class ExpireVersions extends Command {
|
|||
$maxAge = $this->expiration->getMaxAgeAsTimestamp();
|
||||
if (!$maxAge) {
|
||||
$output->writeln("No expiry configured.");
|
||||
return;
|
||||
return 1;
|
||||
}
|
||||
|
||||
$users = $input->getArgument('user_id');
|
||||
|
|
|
|||
Loading…
Reference in a new issue