Passed
Push — master ( 2e2336...176cfe )
by Nils
03:04
created
src/Collector/System/Security/GeneralSecurityCollector.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -84,7 +84,9 @@
 block discarded – undo
84 84
 
85 85
         foreach ($lines as $line) {
86 86
             $line = trim(preg_replace('/#.*/', '', $line)); // Kommentare entfernen
87
-            if ($line === '') continue;
87
+            if ($line === '') {
88
+                continue;
89
+            }
88 90
 
89 91
             if (preg_match('/^\s*(\w+)\s+(yes|no)\s*$/i', $line, $matches)) {
90 92
                 $key = strtolower($matches[1]);
Please login to merge, or discard this patch.