Passed
Push — master ( d6f101...d5f8c0 )
by Nils
03:00
created
src/Collector/Application/WebServer/Nginx/NginxConfigurationCollector.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -37,7 +37,9 @@
 block discarded – undo
37 37
         foreach ($output as $line) {
38 38
             if (preg_match_all('/--with-(\S+)/', $line, $matches)) {
39 39
                 foreach ($matches[1] as $module) {
40
-                    if (str_contains($module, '=')) continue;
40
+                    if (str_contains($module, '=')) {
41
+                        continue;
42
+                    }
41 43
                     $modules[] = $module;
42 44
                 }
43 45
             }
Please login to merge, or discard this patch.