Completed
Push — master ( a1a3b2...ba72b8 )
by Derek Stephen
07:25
created
src/AbstractForm.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -243,7 +243,7 @@  discard block
 block discarded – undo
243 243
     }
244 244
 
245 245
     /**
246
-     * @param $key
246
+     * @param string $key
247 247
      * @return mixed|string
248 248
      */
249 249
     public function getAttribute($key)
@@ -252,8 +252,8 @@  discard block
 block discarded – undo
252 252
     }
253 253
 
254 254
     /**
255
-     * @param $key
256
-     * @param $value
255
+     * @param string $key
256
+     * @param string $value
257 257
      * @return $this
258 258
      */
259 259
     public function setAttribute($key, $value)
Please login to merge, or discard this patch.
src/Field/FieldAbstract.php 1 patch
Doc Comments   -2 removed lines patch added patch discarded remove patch
@@ -166,7 +166,6 @@  discard block
 block discarded – undo
166 166
     }
167 167
 
168 168
     /**
169
-     * @param  mixed $value
170 169
      * @return bool
171 170
      * @throws Exception If validation of $value is impossible
172 171
      */
@@ -183,7 +182,6 @@  discard block
 block discarded – undo
183 182
     }
184 183
 
185 184
     /**
186
-     * @param FieldInterface $field
187 185
      */
188 186
     private function checkForErrors(ValidatorInterface $validator)
189 187
     {
Please login to merge, or discard this patch.
src/Field/FieldInterface.php 1 patch
Doc Comments   +4 added lines, -5 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@  discard block
 block discarded – undo
22 22
     public function setValue($value);
23 23
 
24 24
     /**
25
-     * @return mixed
25
+     * @return string
26 26
      */
27 27
     public function getValue();
28 28
 
@@ -48,17 +48,17 @@  discard block
 block discarded – undo
48 48
     public function getName();
49 49
 
50 50
     /**
51
-     * @return mixed
51
+     * @return string
52 52
      */
53 53
     public function getTag();
54 54
 
55 55
     /**
56
-     * @return mixed
56
+     * @return string
57 57
      */
58 58
     public function getClass();
59 59
 
60 60
     /**
61
-     * @return mixed
61
+     * @return string
62 62
      */
63 63
     public function getTagType();
64 64
 
@@ -85,7 +85,6 @@  discard block
 block discarded – undo
85 85
     public function getFilters();
86 86
 
87 87
     /**
88
-     * @param  mixed $value
89 88
      * @return bool
90 89
      * @throws Exception If validation of $value is impossible
91 90
      */
Please login to merge, or discard this patch.
src/FormRenderer.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -95,7 +95,7 @@
 block discarded – undo
95 95
         $helpBlock->setAttribute('class', 'help-block');
96 96
         $errorMessages = '';
97 97
         foreach ($messages as $message) {
98
-            if(is_array($message)) {
98
+            if (is_array($message)) {
99 99
                 foreach ($message as $m) {
100 100
                     $errorMessages .= $m."\n";
101 101
                 }
Please login to merge, or discard this patch.