Completed
Push — master ( b7faa8...c403ae )
by Petrică
02:58 queued 37s
created
Command/NotifyCommand.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -83,9 +83,9 @@  discard block
 block discarded – undo
83 83
 
84 84
         $iterations = $input->getOption('iterations');
85 85
         $count = 0;
86
-        while($count < $iterations)
86
+        while ($count < $iterations)
87 87
         {
88
-            foreach($gauges as $gauge) {
88
+            foreach ($gauges as $gauge) {
89 89
                 // Sampling period attained for current gauge?
90 90
                 if (fmod($count, $gauge->getSamplingPeriod()) == 0) {
91 91
                     $value = $gauge->getValue();
@@ -100,7 +100,7 @@  discard block
 block discarded – undo
100 100
             }
101 101
 
102 102
             sleep(1);
103
-            $count ++;
103
+            $count++;
104 104
         }
105 105
     }
106 106
 
Please login to merge, or discard this patch.