@@ -88,7 +88,7 @@ discard block |
||
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 |
||
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 | { |
@@ -70,7 +70,6 @@ discard block |
||
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 |
||
82 | 81 | /** |
83 | 82 | * Grid inline time picker. |
84 | 83 | * |
85 | - * @param string $format |
|
86 | 84 | * |
87 | 85 | * @return $this |
88 | 86 | */ |
@@ -325,7 +325,7 @@ discard block |
||
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 |
||
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 |