@@ -202,7 +202,7 @@ discard block |
||
202 | 202 | /** |
203 | 203 | * Field constructor. |
204 | 204 | * |
205 | - * @param $column |
|
205 | + * @param string $column |
|
206 | 206 | * @param array $arguments |
207 | 207 | */ |
208 | 208 | public function __construct($column, $arguments = []) |
@@ -401,7 +401,7 @@ discard block |
||
401 | 401 | /** |
402 | 402 | * Get or set rules. |
403 | 403 | * |
404 | - * @param null $rules |
|
404 | + * @param string $rules |
|
405 | 405 | * @param array $messages |
406 | 406 | * |
407 | 407 | * @return $this |
@@ -494,7 +494,7 @@ discard block |
||
494 | 494 | /** |
495 | 495 | * Set or get value of the field. |
496 | 496 | * |
497 | - * @param null $value |
|
497 | + * @param string $value |
|
498 | 498 | * |
499 | 499 | * @return mixed |
500 | 500 | */ |
@@ -647,7 +647,7 @@ discard block |
||
647 | 647 | /** |
648 | 648 | * Add html attributes to elements. |
649 | 649 | * |
650 | - * @param array|string $attribute |
|
650 | + * @param string $attribute |
|
651 | 651 | * @param mixed $value |
652 | 652 | * |
653 | 653 | * @return $this |
@@ -1047,7 +1047,7 @@ |
||
1047 | 1047 | */ |
1048 | 1048 | public function render() |
1049 | 1049 | { |
1050 | - if (! $this->shouldRender()) { |
|
1050 | + if (!$this->shouldRender()) { |
|
1051 | 1051 | return ''; |
1052 | 1052 | } |
1053 | 1053 |