Completed
Push — master ( ddd7b0...215d1a )
by Arjay
01:22
created
src/Html/HasTable.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -244,8 +244,8 @@
 block discarded – undo
244 244
     /**
245 245
      * Sets HTML table attribute(s).
246 246
      *
247
-     * @param string|array $attribute
248
-     * @param mixed $value
247
+     * @param string $attribute
248
+     * @param string $value
249 249
      * @return $this
250 250
      */
251 251
     public function setTableAttribute($attribute, $value = null)
Please login to merge, or discard this patch.
src/Html/Options/Plugins/RowGroup.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -42,7 +42,7 @@
 block discarded – undo
42 42
     /**
43 43
      * Set rowGroup dataSrc option value.
44 44
      *
45
-     * @param mixed $value
45
+     * @param integer $value
46 46
      * @return $this
47 47
      * @see https://datatables.net/reference/option/rowGroup.dataSrc
48 48
      */
Please login to merge, or discard this patch.
src/Html/Options/Plugins/RowReorder.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@
 block discarded – undo
28 28
     /**
29 29
      * Set rowReorder dataSrc option value.
30 30
      *
31
-     * @param mixed $value
31
+     * @param integer $value
32 32
      * @return $this
33 33
      * @see https://datatables.net/reference/option/rowReorder.dataSrc
34 34
      */
Please login to merge, or discard this patch.
src/Html/Editor/HasEvents.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -64,6 +64,7 @@
 block discarded – undo
64 64
      * Add Editor event listener scripts.
65 65
      *
66 66
      * @param string $script
67
+     * @param string $event
67 68
      * @return Editor
68 69
      * @see https://editor.datatables.net/reference/event
69 70
      */
Please login to merge, or discard this patch.
src/Html/Editor/Editor.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -2,7 +2,6 @@
 block discarded – undo
2 2
 
3 3
 namespace Yajra\DataTables\Html\Editor;
4 4
 
5
-use Illuminate\Contracts\Support\Arrayable;
6 5
 use Illuminate\Support\Arr;
7 6
 use Illuminate\Support\Fluent;
8 7
 use Illuminate\Support\Str;
Please login to merge, or discard this patch.
src/Html/Editor/Fields/File.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@
 block discarded – undo
32 32
     }
33 33
 
34 34
     /**
35
-     * @param string $label
35
+     * @param string $value
36 36
      * @return $this
37 37
      */
38 38
     public function display($value)
Please login to merge, or discard this patch.