Passed
Push — master ( 1be2c9...3b7d80 )
by Nils
02:34
created
src/Collector/System/Service/SystemDCollector.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,9 @@
 block discarded – undo
32 32
         $units = explode("\n", trim($output));
33 33
 
34 34
         foreach ($units as $unit) {
35
-            if (empty($unit)) continue;
35
+            if (empty($unit)) {
36
+                continue;
37
+            }
36 38
 
37 39
             $id = trim(Runner::run("systemctl show $unit --property=Id --value")->getOutput());
38 40
             $description = trim(Runner::run("systemctl show $unit --property=Description --value")->getOutput());
Please login to merge, or discard this patch.