diff options
author | Christoph Wurst <ChristophWurst@users.noreply.github.com> | 2023-01-27 15:43:33 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-27 15:43:33 +0100 |
commit | df0bb9165dd3cc83decdba1115c599f51924d60b (patch) | |
tree | 48541706cbfcbbd5368530b6d6ecf7a788073eea /apps | |
parent | a63b5575687bb838c82f86a11a1545668157dc71 (diff) | |
parent | 954284f8cd880d9314a8db950810ab5b37605c71 (diff) | |
download | nextcloud-server-df0bb9165dd3cc83decdba1115c599f51924d60b.tar.gz nextcloud-server-df0bb9165dd3cc83decdba1115c599f51924d60b.zip |
Merge pull request #36380 from nextcloud/fix/caldav/reminder-service-nullable-calendar-data
fix(caldav): Fix wrong Psalm report for nullable calendar data
Diffstat (limited to 'apps')
-rw-r--r-- | apps/dav/lib/CalDAV/Reminder/ReminderService.php | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/apps/dav/lib/CalDAV/Reminder/ReminderService.php b/apps/dav/lib/CalDAV/Reminder/ReminderService.php index ffb829f454a..1da471a51f5 100644 --- a/apps/dav/lib/CalDAV/Reminder/ReminderService.php +++ b/apps/dav/lib/CalDAV/Reminder/ReminderService.php @@ -217,7 +217,6 @@ class ReminderService { return; } - /** @var VObject\Component\VCalendar $vcalendar */ $vcalendar = $this->parseCalendarData($calendarData); if (!$vcalendar) { return; |