fix: add eol in dav command and use success const as return code

Signed-off-by: GreyXor <greyxor@protonmail.com>
This commit is contained in:
GreyXor 2024-10-19 02:43:57 +02:00
parent bdc73c67bb
commit 91464caa39
No known key found for this signature in database

View file

@ -54,7 +54,8 @@ class FixCalendarSyncCommand extends Command {
});
$progress->finish();
}
return 0;
$output->writeln('');
return self::SUCCESS;
}
private function fixUserCalendars(IUser $user, ?ProgressBar $progress = null): void {