@@ -40,7 +40,7 @@ |
||
40 | 40 | public function XML_val(?string $method, $arguments = []) |
41 | 41 | { |
42 | 42 | if (Vardump::inst()->isSafe()) { |
43 | - if (! is_array($arguments)) { |
|
43 | + if (!is_array($arguments)) { |
|
44 | 44 | $arguments = [$arguments]; |
45 | 45 | } |
46 | 46 |
@@ -48,7 +48,7 @@ discard block |
||
48 | 48 | foreach ($value as $key2 => $value2) { |
49 | 49 | ++$colCount; |
50 | 50 | if ($colCount < $maxCols) { |
51 | - $html .= '<td>' . strip_tags( (string) $value2) . '</td>'; |
|
51 | + $html .= '<td>' . strip_tags((string) $value2) . '</td>'; |
|
52 | 52 | } else { |
53 | 53 | $html .= '<td>...</td>'; |
54 | 54 | } |
@@ -64,7 +64,7 @@ discard block |
||
64 | 64 | $html .= ' |
65 | 65 | <tr> |
66 | 66 | <th>' . $key . '</th> |
67 | - <td>' . strip_tags( (string) $value) . '</td> |
|
67 | + <td>' . strip_tags((string) $value) . '</td> |
|
68 | 68 | </tr>'; |
69 | 69 | } |
70 | 70 | } |