diff options
author | kesselb <mail@danielkesselberg.de> | 2021-02-14 19:47:21 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-14 19:47:21 +0100 |
commit | dff8457e8fe03987a642843c899831cf706d39ba (patch) | |
tree | 032b685e3ee19cdf2b1aab9a6ca79fd16b86c401 | |
parent | d93a3665a06d40bdeeb70b9de9a990a93597fae5 (diff) | |
parent | 19f7476f77039b770ff22d12550ab836012cfd38 (diff) | |
download | nextcloud-server-dff8457e8fe03987a642843c899831cf706d39ba.tar.gz nextcloud-server-dff8457e8fe03987a642843c899831cf706d39ba.zip |
Merge pull request #25635 from nextcloud/fix/psalm/ProperNameSpace
Use correct namespace (casing) in CalendarHome
-rw-r--r-- | apps/dav/lib/CalDAV/CalendarHome.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/dav/lib/CalDAV/CalendarHome.php b/apps/dav/lib/CalDAV/CalendarHome.php index 1a00ad94af5..c746ab04112 100644 --- a/apps/dav/lib/CalDAV/CalendarHome.php +++ b/apps/dav/lib/CalDAV/CalendarHome.php @@ -138,7 +138,7 @@ class CalendarHome extends \Sabre\CalDAV\CalendarHome { return new Outbox($this->config, $this->principalInfo['uri']); } if ($name === 'notifications' && $this->caldavBackend instanceof NotificationSupport) { - return new \Sabre\CalDAv\Notifications\Collection($this->caldavBackend, $this->principalInfo['uri']); + return new \Sabre\CalDAV\Notifications\Collection($this->caldavBackend, $this->principalInfo['uri']); } // Calendars |