From 8712754f8ccbbfcd0b2b546b82b345d49973678c Mon Sep 17 00:00:00 2001 From: Georg Ehrke Date: Wed, 27 Jun 2012 22:27:48 +0200 Subject: [PATCH] fix style of some doc --- apps/calendar/lib/export.php | 10 +++++----- 1 file 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);