Passed
Push — master ( 4681cf...512267 )
by Nicolaas
09:14
created
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.