Completed
Push — master ( 4a68ab...01a40f )
by Song
03:24
created
src/Grid/Column.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -88,7 +88,7 @@  discard block
 block discarded – undo
88 88
     /**
89 89
      * Get name of this column.
90 90
      *
91
-     * @return mixed
91
+     * @return string
92 92
      */
93 93
     public function getName()
94 94
     {
@@ -112,7 +112,7 @@  discard block
 block discarded – undo
112 112
     /**
113 113
      * Get label of the column.
114 114
      *
115
-     * @return mixed
115
+     * @return string
116 116
      */
117 117
     public function getLabel()
118 118
     {
Please login to merge, or discard this patch.
src/Grid/Column/InlineEditing.php 1 patch
Doc Comments   -2 removed lines patch added patch discarded remove patch
@@ -70,7 +70,6 @@  discard block
 block discarded – undo
70 70
     /**
71 71
      * Grid inline date picker.
72 72
      *
73
-     * @param string $format
74 73
      *
75 74
      * @return $this
76 75
      */
@@ -82,7 +81,6 @@  discard block
 block discarded – undo
82 81
     /**
83 82
      * Grid inline time picker.
84 83
      *
85
-     * @param string $format
86 84
      *
87 85
      * @return $this
88 86
      */
Please login to merge, or discard this patch.
src/Traits/HasAssets.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -325,7 +325,7 @@  discard block
 block discarded – undo
325 325
 
326 326
         libxml_use_internal_errors(true);
327 327
 
328
-        $dom->loadHTML('<?xml encoding="utf-8" ?>' . $str);
328
+        $dom->loadHTML('<?xml encoding="utf-8" ?>'.$str);
329 329
 
330 330
         libxml_use_internal_errors(false);
331 331
 
@@ -345,7 +345,7 @@  discard block
 block discarded – undo
345 345
             }
346 346
 
347 347
             if ($child instanceof \DOMElement && $child->tagName == 'script') {
348
-                static::script(';(function () {' . $child->nodeValue . '})();');
348
+                static::script(';(function () {'.$child->nodeValue.'})();');
349 349
                 continue;
350 350
             }
351 351
 
Please login to merge, or discard this patch.