Completed
Branch master (4875a3)
by Pierre-Henry
34:00
created
_protected/framework/Mvc/Model/Engine/Db.class.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -272,7 +272,7 @@  discard block
 block discarded – undo
272 272
      *
273 273
      * @param string $sStatement
274 274
      *
275
-     * @return mixed
275
+     * @return string
276 276
      */
277 277
     public function queryFetchColAssoc($sStatement)
278 278
     {
@@ -318,7 +318,7 @@  discard block
 block discarded – undo
318 318
     /**
319 319
      * Count the number of requests.
320 320
      *
321
-     * @return float number
321
+     * @return integer number
322 322
      */
323 323
     public static function queryCount()
324 324
     {
Please login to merge, or discard this patch.
_protected/framework/Translate/Lang.class.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -227,7 +227,6 @@
 block discarded – undo
227 227
     /**
228 228
      * Language helper function.
229 229
      *
230
-     * @param string $sVar [, string $... ]
231 230
      *
232 231
      * @return string Returns the text with gettext function or language in an array (this depends on whether a key language was found in the language table).
233 232
      */
Please login to merge, or discard this patch.
_protected/framework/Video/Api/Api.class.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -88,7 +88,7 @@
 block discarded – undo
88 88
     /**
89 89
      * @param string $sUrl
90 90
      *
91
-     * @return string|bool The embed URL if id is valid, false otherwise.
91
+     * @return false|string The embed URL if id is valid, false otherwise.
92 92
      */
93 93
     public function getEmbedUrl($sUrl)
94 94
     {
Please login to merge, or discard this patch.
_protected/framework/Video/Api/Dailymotion.class.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@  discard block
 block discarded – undo
24 24
     /**
25 25
      * @param string $sUrl
26 26
      *
27
-     * @return string|bool Returns the video embed URL if it was found, FALSE otherwise.
27
+     * @return false|string Returns the video embed URL if it was found, FALSE otherwise.
28 28
      */
29 29
     public function getVideo($sUrl)
30 30
     {
@@ -63,7 +63,7 @@  discard block
 block discarded – undo
63 63
     /**
64 64
      * @param string $sUrl
65 65
      *
66
-     * @return int|bool Returns the ID of the video if it was found, FALSE otherwise.
66
+     * @return string|false Returns the ID of the video if it was found, FALSE otherwise.
67 67
      */
68 68
     public function getVideoId($sUrl)
69 69
     {
Please login to merge, or discard this patch.
_protected/framework/Video/Api/Metacafe.class.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@  discard block
 block discarded – undo
22 22
     /**
23 23
      * @param string $sUrl
24 24
      *
25
-     * @return string|bool Returns the embed video URL if found, FALSE otherwise.
25
+     * @return false|string Returns the embed video URL if found, FALSE otherwise.
26 26
      */
27 27
     public function getVideo($sUrl)
28 28
     {
@@ -127,7 +127,7 @@  discard block
 block discarded – undo
127 127
     /**
128 128
      * @param string $sUrl
129 129
      *
130
-     * @return int|bool Returns the ID of the video if it was found, FALSE otherwise.
130
+     * @return string|false Returns the ID of the video if it was found, FALSE otherwise.
131 131
      */
132 132
     public function getVideoId($sUrl)
133 133
     {
@@ -141,7 +141,7 @@  discard block
 block discarded – undo
141 141
      *
142 142
      * @param string $sUrl
143 143
      *
144
-     * @return bool|string
144
+     * @return false|string
145 145
      */
146 146
     public function getEmbedUrl($sUrl)
147 147
     {
Please login to merge, or discard this patch.
_protected/framework/Video/Api/Vimeo.class.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@  discard block
 block discarded – undo
22 22
     /**
23 23
      * @param string $sUrl
24 24
      *
25
-     * @return string|bool Returns the video embed URL if it was found and is valid, FALSE otherwise.
25
+     * @return false|string Returns the video embed URL if it was found and is valid, FALSE otherwise.
26 26
      */
27 27
     public function getVideo($sUrl)
28 28
     {
@@ -70,7 +70,7 @@  discard block
 block discarded – undo
70 70
     /**
71 71
      * @param string $sUrl
72 72
      *
73
-     * @return int|bool Returns the ID of the video if it was found, FALSE otherwise.
73
+     * @return string|false Returns the ID of the video if it was found, FALSE otherwise.
74 74
      */
75 75
     public function getVideoId($sUrl)
76 76
     {
Please login to merge, or discard this patch.
_protected/framework/Video/Api/Youtube.class.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@
 block discarded – undo
28 28
     /**
29 29
      * @param string $sUrl
30 30
      *
31
-     * @return string|bool Returns the embed video URL if found, FALSE otherwise.
31
+     * @return false|string Returns the embed video URL if found, FALSE otherwise.
32 32
      */
33 33
     public function getVideo($sUrl)
34 34
     {
Please login to merge, or discard this patch.
static/PFBC/ckeditor/ckeditor_php5.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -474,6 +474,7 @@
 block discarded – undo
474 474
 
475 475
     /**
476 476
      * Return path to ckeditor.js.
477
+     * @return string
477 478
      */
478 479
     private function ckeditorPath()
479 480
     {
Please login to merge, or discard this patch.
_protected/framework/Structure/General.class.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,6 @@
 block discarded – undo
17 17
         /**
18 18
          * Emit a signal.
19 19
          *
20
-         * @param mixed $mVar [, string $... ]
21 20
          *
22 21
          * @return string
23 22
          */
Please login to merge, or discard this patch.