Test Setup Failed
Push — master ( a81a2e...4c1de8 )
by Gabriel
29s
created
src/Buttons/Abstract.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -106,7 +106,7 @@
 block discarded – undo
106 106
     }
107 107
 
108 108
     /**
109
-     * @param $value
109
+     * @param string $value
110 110
      * @return $this
111 111
      */
112 112
     public function setValue($value)
Please login to merge, or discard this patch.
src/DisplayGroup.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -153,7 +153,7 @@
 block discarded – undo
153 153
     }
154 154
 
155 155
     /**
156
-     * @return mixed
156
+     * @return string
157 157
      */
158 158
     public function render()
159 159
     {
Please login to merge, or discard this patch.
src/Renderer/AbstractRenderer.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -243,7 +243,7 @@  discard block
 block discarded – undo
243 243
 
244 244
     /**
245 245
      * @param AbstractElement $element
246
-     * @return mixed
246
+     * @return AbstractElementRenderer
247 247
      */
248 248
     protected function getNewElementRenderer(AbstractElement $element)
249 249
     {
@@ -273,7 +273,7 @@  discard block
 block discarded – undo
273 273
 
274 274
     /**
275 275
      * @param Nip_Form_Button_Abstract $button
276
-     * @return mixed
276
+     * @return AbstractButtonRenderer
277 277
      */
278 278
     protected function getNewButtonRenderer(Nip_Form_Button_Abstract $button)
279 279
     {
Please login to merge, or discard this patch.
src/Renderer/Bootstrap.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -75,7 +75,7 @@
 block discarded – undo
75 75
     }
76 76
 
77 77
     /**
78
-     * @param $label
78
+     * @param Nip_Form_Element_Abstract $label
79 79
      * @param bool $required
80 80
      * @param bool $error
81 81
      * @return string
Please login to merge, or discard this patch.
src/Renderer/buttons/Abstract.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -92,7 +92,7 @@
 block discarded – undo
92 92
     }
93 93
 
94 94
     /**
95
-     * @return array
95
+     * @return string[]
96 96
      */
97 97
     public function getItemAttribs()
98 98
     {
Please login to merge, or discard this patch.
src/Renderer/Elements/Abstract.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -133,7 +133,7 @@
 block discarded – undo
133 133
     }
134 134
 
135 135
     /**
136
-     * @return array
136
+     * @return string[]
137 137
      */
138 138
     public function getElementAttribs()
139 139
     {
Please login to merge, or discard this patch.
src/Traits/NewElementsMethods.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -68,7 +68,7 @@
 block discarded – undo
68 68
     }
69 69
 
70 70
     /**
71
-     * @param $type
71
+     * @param string $type
72 72
      * @return string
73 73
      */
74 74
     public function getElementClassName($type)
Please login to merge, or discard this patch.
src/AbstractForm.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -81,7 +81,7 @@  discard block
 block discarded – undo
81 81
 
82 82
     /**
83 83
      * @param $name
84
-     * @return ElementAbstract|null
84
+     * @return Elements\AbstractElement|null
85 85
      */
86 86
     public function __get($name)
87 87
     {
@@ -336,7 +336,7 @@  discard block
 block discarded – undo
336 336
 
337 337
 
338 338
     /**
339
-     * @param $type
339
+     * @param string $type
340 340
      * @return $this
341 341
      */
342 342
     public function setRendererType($type)
Please login to merge, or discard this patch.
src/Elements/MultiElement.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@
 block discarded – undo
30 30
     }
31 31
 
32 32
     /**
33
-     * @param $name
33
+     * @param string $name
34 34
      * @return Nip_Form_Element_Abstract
35 35
      * @throws \Nip\Logger\Exception
36 36
      */
Please login to merge, or discard this patch.