diff options
author | Georg Ehrke <dev@georgswebsite.de> | 2012-06-30 17:08:00 +0200 |
---|---|---|
committer | Georg Ehrke <dev@georgswebsite.de> | 2012-06-30 17:09:20 +0200 |
commit | fa5b31ac9ce8945140dbd4eae325d8c7aa5560e6 (patch) | |
tree | 37a7b519a02fec2d85392c876c527641fc6590c7 /apps/calendar/lib/export.php | |
parent | 4ed55315e7280ab4212c0172503b1a08a0a4240d (diff) | |
download | nextcloud-server-fa5b31ac9ce8945140dbd4eae325d8c7aa5560e6.tar.gz nextcloud-server-fa5b31ac9ce8945140dbd4eae325d8c7aa5560e6.zip |
fix documentation style
Diffstat (limited to 'apps/calendar/lib/export.php')
-rw-r--r-- | apps/calendar/lib/export.php | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/apps/calendar/lib/export.php b/apps/calendar/lib/export.php index b05e758672b..8f26891f366 100644 --- a/apps/calendar/lib/export.php +++ b/apps/calendar/lib/export.php @@ -5,17 +5,17 @@ * later. * See the COPYING-README file. */ -/* +/** * This class does export and converts all times to UTC */ class OC_Calendar_Export{ - /* + /** * @brief Use one of these constants as second parameter if you call OC_Calendar_Export::export() */ const CALENDAR = 'calendar'; const EVENT = 'event'; - /* + /** * @brief export a calendar or an event * @param integer $id id of calendar / event * @param string $type use OC_Calendar_Export constants @@ -30,7 +30,7 @@ class OC_Calendar_Export{ return self::fixLineBreaks($return); } - /* + /** * @brief exports a calendar and convert all times to UTC * @param integer $id id of the calendar * @return string @@ -46,7 +46,7 @@ class OC_Calendar_Export{ return $return; } - /* + /** * @brief exports an event and convert all times to UTC * @param integer $id id of the event * @return string @@ -59,7 +59,7 @@ class OC_Calendar_Export{ return $return; } - /* + /** * @brief generates the VEVENT with UTC dates * @param array $event * @return string @@ -79,7 +79,7 @@ class OC_Calendar_Export{ return $object->VEVENT->serialize(); } - /* + /** * @brief fixes new line breaks * (fixes problems with Apple iCal) * @param string $string to fix |