]> source.dussan.org Git - nextcloud-server.git/commitdiff
fix style of some doc
authorGeorg Ehrke <dev@georgswebsite.de>
Wed, 27 Jun 2012 20:27:48 +0000 (22:27 +0200)
committerGeorg Ehrke <dev@georgswebsite.de>
Wed, 27 Jun 2012 20:27:48 +0000 (22:27 +0200)
apps/calendar/lib/export.php

index 63f7b9e6c6cb6ef9740c9e01686fac163ffb4004..6f478236ded4668be56aaa654306cb03ce7f325b 100644 (file)
@@ -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);