Passed
Push — master ( c6c202...4681cf )
by Nicolaas
09:34
created
Category
src/DebugTrait.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.
src/ArrayToTable.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -48,7 +48,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
                 }
Please login to merge, or discard this patch.
src/Vardump.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -196,7 +196,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 
Please login to merge, or discard this patch.