Completed
Push — master ( 15d409...38a590 )
by Shcherbak
05:57 queued 13s
created
src/Fiv/Form/Element/Html.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -82,7 +82,7 @@  discard block
 block discarded – undo
82 82
 
83 83
     /**
84 84
      *
85
-     * @param      $tag
85
+     * @param      string $tag
86 86
      * @param      $attributes
87 87
      * @param bool $content
88 88
      * @return string
@@ -136,7 +136,7 @@  discard block
 block discarded – undo
136 136
 
137 137
 
138 138
     /**
139
-     * @param $name
139
+     * @param string $name
140 140
      * @return $this
141 141
      */
142 142
     public function removeAttribute($name) {
Please login to merge, or discard this patch.
src/Fiv/Form/Filter/RegexReplace.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@
 block discarded – undo
17 17
 
18 18
 
19 19
     /**
20
-     * @param        $from
20
+     * @param        string $from
21 21
      * @param string $to
22 22
      * @return \Fiv\Form\Filter\RegexReplace
23 23
      */
Please login to merge, or discard this patch.
src/Fiv/Form/Form.php 1 patch
Doc Comments   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -187,7 +187,7 @@  discard block
 block discarded – undo
187 187
 
188 188
     /**
189 189
      * @param string $name
190
-     * @param        $text
190
+     * @param        string $text
191 191
      * @return \Fiv\Form\Element\Input
192 192
      */
193 193
     public function input($name, $text = null) {
@@ -228,8 +228,8 @@  discard block
 block discarded – undo
228 228
 
229 229
 
230 230
     /**
231
-     * @param      $name
232
-     * @param null $text
231
+     * @param      string $name
232
+     * @param string $text
233 233
      * @return Select
234 234
      */
235 235
     public function select($name, $text = null) {
@@ -242,7 +242,7 @@  discard block
 block discarded – undo
242 242
 
243 243
 
244 244
     /**
245
-     * @param        $name
245
+     * @param        string $name
246 246
      * @param string $text
247 247
      * @return RadioList
248 248
      */
@@ -256,7 +256,7 @@  discard block
 block discarded – undo
256 256
 
257 257
 
258 258
     /**
259
-     * @param      $name
259
+     * @param      string $name
260 260
      * @param null $text
261 261
      * @return TextArea
262 262
      */
@@ -291,8 +291,8 @@  discard block
 block discarded – undo
291 291
      * ```
292 292
      * $form->submit('register', 'зареєструватись');
293 293
      * ```
294
-     * @param      $name
295
-     * @param null $value
294
+     * @param      string $name
295
+     * @param string $value
296 296
      * @return Submit
297 297
      */
298 298
     public function submit($name, $value = null) {
@@ -323,7 +323,7 @@  discard block
 block discarded – undo
323 323
 
324 324
     /**
325 325
      * @param string $name
326
-     * @param null $text
326
+     * @param string $text
327 327
      * @return CheckboxList
328 328
      */
329 329
     public function checkboxList($name, $text = null) {
Please login to merge, or discard this patch.
src/Fiv/Form/CheckboxList.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@
 block discarded – undo
17 17
   class CheckboxList extends \Fiv\Form\Element\Multiple {
18 18
 
19 19
     /**
20
-     * @param mixed $data
20
+     * @param string[] $data
21 21
      * @return $this
22 22
      */
23 23
     public function setValue($data) {
Please login to merge, or discard this patch.