Completed
Push — master ( d79f0a...abdca8 )
by Michael
06:29
created
class/pear/Calendar/Engine/UnixTS.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -381,7 +381,7 @@  discard block
 block discarded – undo
381 381
      * @param int $m month (9)
382 382
      * @param int $d day (4)
383 383
      *
384
-     * @return array (0,1,2,3,4,5,6) 1 = Monday
384
+     * @return integer[] (0,1,2,3,4,5,6) 1 = Monday
385 385
      * @access protected
386 386
      */
387 387
     function getWeekDays($y=null, $m=null, $d=null)
@@ -455,7 +455,7 @@  discard block
 block discarded – undo
455 455
     /**
456 456
      * Checks if the given day is the current day
457 457
      *
458
-     * @param mixed $stamp Any timestamp format recognized by Pear::Date
458
+     * @param integer $stamp Any timestamp format recognized by Pear::Date
459 459
      *
460 460
      * @return boolean
461 461
      * @access protected
Please login to merge, or discard this patch.
class/pear/Calendar/Table/Helper.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -197,7 +197,7 @@
 block discarded – undo
197 197
     /**
198 198
      * Returns the first day of the month
199 199
      *
200
-     * @return int
200
+     * @return string
201 201
      * @access protected
202 202
      * @see Calendar_Engine_Interface::getFirstDayOfWeek()
203 203
      */
Please login to merge, or discard this patch.
class/pear/Calendar/Util/Uri.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -129,7 +129,7 @@  discard block
 block discarded – undo
129 129
     /**
130 130
      * Gets the URI string for the previous calendar unit
131 131
      *
132
-     * @param object $Calendar subclassed from Calendar e.g. Calendar_Month
132
+     * @param Calendar_Decorator_Uri $Calendar subclassed from Calendar e.g. Calendar_Month
133 133
      * @param string $unit     calendar  unit (year|month|week|day|hour|minute|second)
134 134
      *
135 135
      * @return string
@@ -163,7 +163,7 @@  discard block
 block discarded – undo
163 163
     /**
164 164
      * Gets the URI string for the next calendar unit
165 165
      *
166
-     * @param object $Calendar subclassed from Calendar e.g. Calendar_Month
166
+     * @param Calendar_Decorator_Uri $Calendar subclassed from Calendar e.g. Calendar_Month
167 167
      * @param string $unit     calendar unit (year|month|week|day|hour|minute|second)
168 168
      *
169 169
      * @return string
Please login to merge, or discard this patch.
class/time.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -43,7 +43,7 @@  discard block
 block discarded – undo
43 43
     }
44 44
 
45 45
     /**
46
-     * @param $id
46
+     * @param integer $id
47 47
      *
48 48
      * @return mixed
49 49
      */
@@ -91,7 +91,7 @@  discard block
 block discarded – undo
91 91
      * @param $format
92 92
      * @param $timestamp
93 93
      *
94
-     * @return mixed
94
+     * @return string
95 95
      */
96 96
     function getFormatedDate($format, $timestamp)
97 97
     {
Please login to merge, or discard this patch.
include/agenda_fnc.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -37,6 +37,9 @@  discard block
 block discarded – undo
37 37
  * @return array
38 38
  */
39 39
 
40
+/**
41
+ * @param string $formatDate
42
+ */
40 43
 function agenda_getCanevas(
41 44
     $ts,
42 45
     $hStart,
@@ -294,6 +297,9 @@  discard block
 block discarded – undo
294 297
  ******************************************************************
295 298
  * @param $name
296 299
  */
300
+/**
301
+ * @param string $name
302
+ */
297 303
 function ext_loadLanguage($name)
298 304
 {
299 305
     global $xoopsConfig;
Please login to merge, or discard this patch.
include/mail_fnc.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -211,6 +211,9 @@  discard block
 block discarded – undo
211 211
  * @param int    $mode
212 212
  * @param string $sep
213 213
  */
214
+/**
215
+ * @param string $mail_subject
216
+ */
214 217
 function extcal_SendMail(
215 218
     $destinataires,
216 219
     $mail_fromname,
@@ -300,6 +303,9 @@  discard block
 block discarded – undo
300 303
  *
301 304
  * @return string
302 305
  */
306
+/**
307
+ * @param integer $mode
308
+ */
303 309
 function extcal_getHeader($mode, $emailSender)
304 310
 {
305 311
 //mode = 0 pas d'entete
Please login to merge, or discard this patch.
class/ExtcalPersistableObjectHandler.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -536,7 +536,7 @@
 block discarded – undo
536 536
 
537 537
     /**
538 538
      * @param        $objects
539
-     * @param array  $externalKeys
539
+     * @param string[]  $externalKeys
540 540
      * @param string $format
541 541
      *
542 542
      * @return array
Please login to merge, or discard this patch.
class/pear/Calendar/Decorator.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -136,7 +136,7 @@  discard block
 block discarded – undo
136 136
     /**
137 137
      * Returns the date as an associative array (helper method).
138 138
      *
139
-     * @param mixed $stamp timestamp (leave empty for current timestamp)
139
+     * @param integer $stamp timestamp (leave empty for current timestamp)
140 140
      *
141 141
      * @return array
142 142
      */
@@ -242,7 +242,7 @@  discard block
 block discarded – undo
242 242
      *
243 243
      * @param array $sDates array containing Calendar objects to select (optional)
244 244
      *
245
-     * @return bool
245
+     * @return boolean|null
246 246
      * @abstract
247 247
      */
248 248
     public function build($sDates = array())
Please login to merge, or discard this patch.
class/pear/Calendar/Engine/Interface.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -346,7 +346,7 @@
 block discarded – undo
346 346
      *
347 347
      * @param int timestamp (depending on implementation)
348 348
      *
349
-     * @return bool
349
+     * @return boolean|null
350 350
      */
351 351
     public function isToday($stamp)
352 352
     {
Please login to merge, or discard this patch.