Completed
Pull Request — master (#284)
by Gino
07:36
created
htdocs/class/xml/rpc/xmlrpcapi.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -154,8 +154,8 @@
 block discarded – undo
154 154
     }
155 155
 
156 156
     /**
157
-     * @param $xoopstag
158
-     * @param $blogtag
157
+     * @param string $xoopstag
158
+     * @param string $blogtag
159 159
      */
160 160
     public function _setXoopsTagMap($xoopstag, $blogtag)
161 161
     {
Please login to merge, or discard this patch.
htdocs/class/xoopseditor/tinymce/formtinymce.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -121,7 +121,7 @@
 block discarded – undo
121 121
     /**
122 122
      * prepare HTML for output
123 123
      *
124
-     * @return sting HTML
124
+     * @return string HTML
125 125
      */
126 126
     public function render()
127 127
     {
Please login to merge, or discard this patch.
htdocs/class/xoopseditor/tinymce/tinymce.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -252,7 +252,7 @@
 block discarded – undo
252 252
     /**
253 253
      * @param string $css_file
254 254
      *
255
-     * @return array
255
+     * @return string[]
256 256
      */
257 257
     public function loadCss($css_file = 'style.css')
258 258
     {
Please login to merge, or discard this patch.
htdocs/class/xoopseditor/xoopseditor.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -146,7 +146,7 @@
 block discarded – undo
146 146
     /**
147 147
      * XoopsEditorHandler::getList()
148 148
      *
149
-     * @param mixed $noHtml
149
+     * @param boolean $noHtml
150 150
      *
151 151
      * @return array
152 152
      */
Please login to merge, or discard this patch.
htdocs/class/xoopsform/form.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -188,7 +188,7 @@
 block discarded – undo
188 188
     /**
189 189
      * @param        $value
190 190
      * @param        $key
191
-     * @param        $ret
191
+     * @param        string $ret
192 192
      * @param string $hashinfo
193 193
      *
194 194
      * @return string
Please login to merge, or discard this patch.
htdocs/class/xoopsform/formbutton.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -86,7 +86,7 @@
 block discarded – undo
86 86
     /**
87 87
      * Set the initial value
88 88
      *
89
-     * @param $value
89
+     * @param string $value
90 90
      *
91 91
      * @return string
92 92
      */
Please login to merge, or discard this patch.
htdocs/class/xoopsform/formelement.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -324,7 +324,7 @@  discard block
 block discarded – undo
324 324
      *
325 325
      * @param  string $extra
326 326
      * @param  bool   $replace If true, passed string will replace current content otherwise it will be appended to it
327
-     * @return array  New content of the extra string
327
+     * @return string[]  New content of the extra string
328 328
      */
329 329
     public function setExtra($extra, $replace = false)
330 330
     {
@@ -373,7 +373,7 @@  discard block
 block discarded – undo
373 373
      * Get the element's nocolspan
374 374
      * Modified by Catzwolf
375 375
      *
376
-     * @return string
376
+     * @return boolean
377 377
      *
378 378
      * @deprecated  PLEASE AVOID USING THIS METHOD
379 379
      */
Please login to merge, or discard this patch.
htdocs/class/xoopsform/formradio.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -87,7 +87,7 @@
 block discarded – undo
87 87
     /**
88 88
      * Set the pre-selected value
89 89
      *
90
-     * @param  $value string
90
+     * @param  string $value string
91 91
      */
92 92
     public function setValue($value)
93 93
     {
Please login to merge, or discard this patch.
htdocs/class/xoopsform/formtextarea.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -103,7 +103,7 @@  discard block
 block discarded – undo
103 103
     /**
104 104
      * Set initial content
105 105
      *
106
-     * @param  $value string
106
+     * @param  string $value string
107 107
      */
108 108
     public function setValue($value)
109 109
     {
@@ -113,7 +113,7 @@  discard block
 block discarded – undo
113 113
     /**
114 114
      * prepare HTML for output
115 115
      *
116
-     * @return sting HTML
116
+     * @return string HTML
117 117
      */
118 118
     public function render()
119 119
     {
Please login to merge, or discard this patch.