diff options
author | Christoph Wurst <christoph@winzerhof-wurst.at> | 2020-04-09 16:17:53 +0200 |
---|---|---|
committer | Christoph Wurst <christoph@winzerhof-wurst.at> | 2020-04-09 16:17:53 +0200 |
commit | 3a415e4139d6e28c16b0420ab411e6df5ff6d54a (patch) | |
tree | 21c2445fd366a9d24c1171b890e37f21608718d0 /apps/dav/lib/CalDAV/Publishing/PublishPlugin.php | |
parent | f4c09f299d989b117ebdf769632dcc6d4582791c (diff) | |
download | nextcloud-server-3a415e4139d6e28c16b0420ab411e6df5ff6d54a.tar.gz nextcloud-server-3a415e4139d6e28c16b0420ab411e6df5ff6d54a.zip |
Remove space between switch case and colon
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Diffstat (limited to 'apps/dav/lib/CalDAV/Publishing/PublishPlugin.php')
-rw-r--r-- | apps/dav/lib/CalDAV/Publishing/PublishPlugin.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/dav/lib/CalDAV/Publishing/PublishPlugin.php b/apps/dav/lib/CalDAV/Publishing/PublishPlugin.php index 59b97312062..214fb79464e 100644 --- a/apps/dav/lib/CalDAV/Publishing/PublishPlugin.php +++ b/apps/dav/lib/CalDAV/Publishing/PublishPlugin.php @@ -176,7 +176,7 @@ class PublishPlugin extends ServerPlugin { switch ($documentType) { - case '{'.self::NS_CALENDARSERVER.'}publish-calendar' : + case '{'.self::NS_CALENDARSERVER.'}publish-calendar': // We can only deal with IShareableCalendar objects if (!$node instanceof Calendar) { @@ -204,7 +204,7 @@ class PublishPlugin extends ServerPlugin { // Breaking the event chain return false; - case '{'.self::NS_CALENDARSERVER.'}unpublish-calendar' : + case '{'.self::NS_CALENDARSERVER.'}unpublish-calendar': // We can only deal with IShareableCalendar objects if (!$node instanceof Calendar) { |