summaryrefslogtreecommitdiffstats
path: root/apps/calendar/lib
diff options
context:
space:
mode:
Diffstat (limited to 'apps/calendar/lib')
-rw-r--r--apps/calendar/lib/export.php10
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);