diff options
author | Georg Ehrke <dev@georgswebsite.de> | 2012-06-27 22:27:48 +0200 |
---|---|---|
committer | Georg Ehrke <dev@georgswebsite.de> | 2012-06-27 22:27:48 +0200 |
commit | 8712754f8ccbbfcd0b2b546b82b345d49973678c (patch) | |
tree | ed93eb709d1a1d6a654ab472aa044b39b2c97841 /apps/calendar | |
parent | 1f738d8c9f176d2fe570e96265fe736a03f69a1b (diff) | |
download | nextcloud-server-8712754f8ccbbfcd0b2b546b82b345d49973678c.tar.gz nextcloud-server-8712754f8ccbbfcd0b2b546b82b345d49973678c.zip |
fix style of some doc
Diffstat (limited to 'apps/calendar')
-rw-r--r-- | apps/calendar/lib/export.php | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/apps/calendar/lib/export.php b/apps/calendar/lib/export.php index 63f7b9e6c6c..6f478236ded 100644 --- a/apps/calendar/lib/export.php +++ b/apps/calendar/lib/export.php @@ -14,9 +14,9 @@ class OC_Calendar_Export{ /* * @brief export a calendar or an event - * @param (int) $id - id of calendar / event - * @param (const) $type - use OC_Calendar_Export constants - * @return (string) + * @param integer $id id of calendar / event + * @param string $type use OC_Calendar_Export constants + * @return string */ public static function export($id, $type){ if($type == self::EVENT){ @@ -30,8 +30,8 @@ class OC_Calendar_Export{ /* * @brief export a calendar and convert all times to UTC - * @param (int) $id - id of the calendar - * @return (string) + * @param integer $id id of the calendar + * @return string */ private static function calendar($id){ $events = OC_Calendar_Object::all($id); |