Passed
Push — master ( 6bb14b...dc86bc )
by Nils
02:20
created
src/Collector/Website/WordPress/WordPressCollector.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,9 @@
 block discarded – undo
17 17
 
18 18
     public function collect(): array
19 19
     {
20
-        if (!array_key_exists(ApacheServerNameCollector::COLLECTION_IDENTIFIER, $this->inventory)) return [];
20
+        if (!array_key_exists(ApacheServerNameCollector::COLLECTION_IDENTIFIER, $this->inventory)) {
21
+            return [];
22
+        }
21 23
 
22 24
         $configs = $this->inventory[ApacheServerNameCollector::COLLECTION_IDENTIFIER];
23 25
 
Please login to merge, or discard this patch.