Completed
Push — master ( de703e...a2c256 )
by Shcherbak
06:30 queued 10s
created
src/Fiv/Form/Form.php 1 patch
Doc Comments   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -147,7 +147,7 @@  discard block
 block discarded – undo
147 147
     /**
148 148
      * Check if form is submitted and all elements are valid
149 149
      *
150
-     * @return bool|null
150
+     * @return boolean
151 151
      */
152 152
     public function isValid() {
153 153
       if ($this->validationResult !== null) {
@@ -233,8 +233,8 @@  discard block
 block discarded – undo
233 233
 
234 234
 
235 235
     /**
236
-     * @param      $name
237
-     * @param null $text
236
+     * @param      string $name
237
+     * @param string $text
238 238
      * @return Select
239 239
      */
240 240
     public function select($name, $text = null) {
@@ -247,7 +247,7 @@  discard block
 block discarded – undo
247 247
 
248 248
 
249 249
     /**
250
-     * @param        $name
250
+     * @param        string $name
251 251
      * @param string $text
252 252
      * @return RadioList
253 253
      */
@@ -261,7 +261,7 @@  discard block
 block discarded – undo
261 261
 
262 262
 
263 263
     /**
264
-     * @param      $name
264
+     * @param      string $name
265 265
      * @param null $text
266 266
      * @return TextArea
267 267
      */
@@ -296,8 +296,8 @@  discard block
 block discarded – undo
296 296
      * ```
297 297
      * $form->submit('register', 'зареєструватись');
298 298
      * ```
299
-     * @param      $name
300
-     * @param null $value
299
+     * @param      string $name
300
+     * @param string $value
301 301
      * @return Submit
302 302
      */
303 303
     public function submit($name, $value = null) {
@@ -328,7 +328,7 @@  discard block
 block discarded – undo
328 328
 
329 329
     /**
330 330
      * @param string $name
331
-     * @param null $text
331
+     * @param string $text
332 332
      * @return CheckboxList
333 333
      */
334 334
     public function checkboxList($name, $text = null) {
Please login to merge, or discard this patch.