Completed
Push — master ( 82be35...1537c0 )
by Song
02:28
created
src/Grid/Displayers/DropdownActions.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -123,7 +123,7 @@
 block discarded – undo
123 123
     /**
124 124
      * @param null|\Closure $callback
125 125
      *
126
-     * @return \Illuminate\Contracts\View\Factory|\Illuminate\View\View|string
126
+     * @return string|null
127 127
      */
128 128
     public function display($callback = null)
129 129
     {
Please login to merge, or discard this patch.
src/Grid/Tools/FixColumns.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -81,7 +81,7 @@
 block discarded – undo
81 81
             'rowName' => $this->grid->getGridRowName(),
82 82
         ]);
83 83
 
84
-        return function (Grid $grid) {
84
+        return function(Grid $grid) {
85 85
             if ($this->head > 0) {
86 86
                 $this->left = $grid->visibleColumns()->slice(0, $this->head);
87 87
             }
Please login to merge, or discard this patch.
src/Form/Field.php 1 patch
Doc Comments   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -282,7 +282,7 @@  discard block
 block discarded – undo
282 282
      *
283 283
      * @param string $column
284 284
      *
285
-     * @return mixed|string
285
+     * @return string
286 286
      */
287 287
     protected function formatColumn($column = '')
288 288
     {
@@ -591,7 +591,7 @@  discard block
 block discarded – undo
591 591
     }
592 592
 
593 593
     /**
594
-     * @param string|array|Closure $input
594
+     * @param callable|null $input
595 595
      * @param string|array         $original
596 596
      *
597 597
      * @return array|Closure
@@ -802,7 +802,7 @@  discard block
 block discarded – undo
802 802
     /**
803 803
      * Set or get value of the field.
804 804
      *
805
-     * @param null $value
805
+     * @param string $value
806 806
      *
807 807
      * @return mixed
808 808
      */
@@ -973,7 +973,7 @@  discard block
 block discarded – undo
973 973
     /**
974 974
      * Add html attributes to elements.
975 975
      *
976
-     * @param array|string $attribute
976
+     * @param string $attribute
977 977
      * @param mixed        $value
978 978
      *
979 979
      * @return $this
@@ -1103,7 +1103,7 @@  discard block
 block discarded – undo
1103 1103
     /**
1104 1104
      * Get placeholder.
1105 1105
      *
1106
-     * @return mixed
1106
+     * @return string
1107 1107
      */
1108 1108
     public function getPlaceholder()
1109 1109
     {
@@ -1360,7 +1360,7 @@  discard block
 block discarded – undo
1360 1360
     }
1361 1361
 
1362 1362
     /**
1363
-     * @param array $labelClass
1363
+     * @param string[] $labelClass
1364 1364
      *
1365 1365
      * @return self
1366 1366
      */
@@ -1414,7 +1414,7 @@  discard block
 block discarded – undo
1414 1414
      *
1415 1415
      * @param string $view
1416 1416
      *
1417
-     * @return string
1417
+     * @return Field
1418 1418
      */
1419 1419
     public function setView($view): self
1420 1420
     {
@@ -1490,7 +1490,7 @@  discard block
 block discarded – undo
1490 1490
     /**
1491 1491
      * Render this filed.
1492 1492
      *
1493
-     * @return \Illuminate\Contracts\View\Factory|\Illuminate\View\View|string
1493
+     * @return string|null
1494 1494
      */
1495 1495
     public function render()
1496 1496
     {
@@ -1510,7 +1510,7 @@  discard block
 block discarded – undo
1510 1510
     }
1511 1511
 
1512 1512
     /**
1513
-     * @return \Illuminate\Contracts\View\Factory|\Illuminate\View\View|string
1513
+     * @return string|null
1514 1514
      */
1515 1515
     protected function fieldRender(array $variables = [])
1516 1516
     {
Please login to merge, or discard this patch.
src/Form/Field/Embeds.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -244,7 +244,7 @@
 block discarded – undo
244 244
     /**
245 245
      * Render the form.
246 246
      *
247
-     * @return \Illuminate\View\View
247
+     * @return string|null
248 248
      */
249 249
     public function render()
250 250
     {
Please login to merge, or discard this patch.
src/Form/Field/File.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -230,7 +230,7 @@
 block discarded – undo
230 230
     /**
231 231
      * Render file upload field.
232 232
      *
233
-     * @return \Illuminate\Contracts\View\Factory|\Illuminate\View\View
233
+     * @return null|string
234 234
      */
235 235
     public function render()
236 236
     {
Please login to merge, or discard this patch.
src/Form/Field/Text.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@
 block discarded – undo
35 35
     /**
36 36
      * Render this filed.
37 37
      *
38
-     * @return \Illuminate\Contracts\View\Factory|\Illuminate\View\View
38
+     * @return string|null
39 39
      */
40 40
     public function render()
41 41
     {
Please login to merge, or discard this patch.