Passed
Push — master ( c9bbee...06663f )
by Nils
02:53
created
src/Command/CollectCommand.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -46,7 +46,9 @@
 block discarded – undo
46 46
                     $collector->setClient($client);
47 47
                 }
48 48
 
49
-                if ($debugMode) $start = time();
49
+                if ($debugMode) {
50
+                    $start = time();
51
+                }
50 52
 
51 53
                 $collected = $collector->collect();
52 54
                 if ($collected) {
Please login to merge, or discard this patch.
src/Util/WebserverUtil.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -19,7 +19,9 @@
 block discarded – undo
19 19
     {
20 20
         if (!array_key_exists($key, $inventory)
21 21
             || !is_array($inventory[$key])
22
-        ) return [];
22
+        ) {
23
+            return [];
24
+        }
23 25
 
24 26
         $configs = $inventory[$key];
25 27
 
Please login to merge, or discard this patch.