@@ -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 | } |
@@ -196,7 +196,7 @@ discard block |
||
196 | 196 | $keyString = ''; |
197 | 197 | } |
198 | 198 | |
199 | - if (! $flatArray) { |
|
199 | + if (!$flatArray) { |
|
200 | 200 | $mixed[$key] = $this->mixedToUl($item); |
201 | 201 | } |
202 | 202 | |
@@ -245,11 +245,11 @@ discard block |
||
245 | 245 | } |
246 | 246 | } |
247 | 247 | |
248 | - if (! $method) { |
|
248 | + if (!$method) { |
|
249 | 249 | $method = $call['function'] ?? 'unknown_method'; |
250 | 250 | } |
251 | 251 | |
252 | - if (! $className) { |
|
252 | + if (!$className) { |
|
253 | 253 | $className = $call['class'] ?? 'unknown_class'; |
254 | 254 | } |
255 | 255 |