@@ -83,9 +83,9 @@ discard block |
||
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 |
||
100 | 100 | } |
101 | 101 | |
102 | 102 | sleep(1); |
103 | - $count ++; |
|
103 | + $count++; |
|
104 | 104 | } |
105 | 105 | } |
106 | 106 |