fix style of some doc

This commit is contained in:
Georg Ehrke 2012-06-27 22:27:48 +02:00
parent 1f738d8c9f
commit 8712754f8c
1 changed files with 5 additions and 5 deletions

View 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);