Completed
Push — master ( 38a590...33903f )
by Shcherbak
06:56
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/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.
src/Fiv/Form/Filter/RegexReplace.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@  discard block
 block discarded – undo
23 23
 
24 24
 
25 25
     /**
26
-     * @param        $from
26
+     * @param        string $from
27 27
      * @param string $to
28 28
      * @return \Fiv\Form\Filter\RegexReplace
29 29
      */
@@ -36,7 +36,7 @@  discard block
 block discarded – undo
36 36
 
37 37
     /**
38 38
      * @param string $value
39
-     * @return mixed|string
39
+     * @return string
40 40
      */
41 41
     public function apply($value) {
42 42
       return preg_replace($this->from, $this->to, $value);
Please login to merge, or discard this patch.