Passed
Push — master ( f0a91f...a4885e )
by Nils
02:33
created
src/Reporter/InventorioReporter.php 2 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -52,7 +52,7 @@
 block discarded – undo
52 52
             throw new \RuntimeException('Unable to connect to ' . $endpoint . ' (ServerException). Message: ' . $e->getMessage());
53 53
         }
54 54
 
55
-         var_dump((string)$response->getBody());die;
55
+            var_dump((string)$response->getBody());die;
56 56
 
57 57
         $result = json_decode((string)$response->getBody(), true);
58 58
 
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -52,7 +52,7 @@
 block discarded – undo
52 52
             throw new \RuntimeException('Unable to connect to ' . $endpoint . ' (ServerException). Message: ' . $e->getMessage());
53 53
         }
54 54
 
55
-         var_dump((string)$response->getBody());die;
55
+         var_dump((string)$response->getBody()); die;
56 56
 
57 57
         $result = json_decode((string)$response->getBody(), true);
58 58
 
Please login to merge, or discard this patch.
src/Collector/Website/UptimeCollector.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -23,7 +23,9 @@
 block discarded – undo
23 23
     {
24 24
         if (!array_key_exists(ApacheServerNameCollector::COLLECTION_IDENTIFIER, $this->inventory)
25 25
             || !is_array($this->inventory[ApacheServerNameCollector::COLLECTION_IDENTIFIER])
26
-        ) return [];
26
+        ) {
27
+            return [];
28
+        }
27 29
 
28 30
         $configs = $this->inventory[ApacheServerNameCollector::COLLECTION_IDENTIFIER];
29 31
 
Please login to merge, or discard this patch.