Completed
Pull Request — master (#30)
by ARCANEDEV
13:30
created
src/FormBuilder.php 1 patch
Doc Comments   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -158,7 +158,7 @@  discard block
 block discarded – undo
158 158
     /**
159 159
      * Get the model instance on the form builder.
160 160
      *
161
-     * @return \Illuminate\Database\Eloquent\Model|mixed|null
161
+     * @return \Illuminate\Database\Eloquent\Model|null
162 162
      */
163 163
     public function getModel()
164 164
     {
@@ -689,7 +689,7 @@  discard block
 block discarded – undo
689 689
      * Create a checkbox input field.
690 690
      *
691 691
      * @param  string     $name
692
-     * @param  mixed      $value
692
+     * @param  integer      $value
693 693
      * @param  bool|null  $checked
694 694
      * @param  array      $attributes
695 695
      *
@@ -821,7 +821,7 @@  discard block
 block discarded – undo
821 821
      * @param  mixed      $value
822 822
      * @param  bool|null  $checked
823 823
      *
824
-     * @return bool
824
+     * @return boolean|null
825 825
      */
826 826
     private function getCheckedState($type, $name, $value, $checked)
827 827
     {
@@ -844,7 +844,7 @@  discard block
 block discarded – undo
844 844
      * @param  mixed      $value
845 845
      * @param  bool|null  $checked
846 846
      *
847
-     * @return bool
847
+     * @return boolean|null
848 848
      */
849 849
     private function getCheckboxCheckedState($name, $value, $checked)
850 850
     {
@@ -876,7 +876,7 @@  discard block
 block discarded – undo
876 876
      * @param  mixed      $value
877 877
      * @param  bool|null  $checked
878 878
      *
879
-     * @return bool
879
+     * @return boolean|null
880 880
      */
881 881
     private function getRadioCheckedState($name, $value, $checked)
882 882
     {
Please login to merge, or discard this patch.