@@ -88,9 +88,9 @@ discard block |
||
| 88 | 88 | |
| 89 | 89 | $iterations = $input->getOption('iterations'); |
| 90 | 90 | $count = 0; |
| 91 | - while($count < $iterations) |
|
| 91 | + while ($count < $iterations) |
|
| 92 | 92 | { |
| 93 | - foreach($gauges as $path => $gauge) { |
|
| 93 | + foreach ($gauges as $path => $gauge) { |
|
| 94 | 94 | // Sampling period attained for current gauge? |
| 95 | 95 | if (fmod($count, $gauge->getSamplingPeriod()) == 0) { |
| 96 | 96 | $value = $gauge->getValue(); |
@@ -105,7 +105,7 @@ discard block |
||
| 105 | 105 | } |
| 106 | 106 | |
| 107 | 107 | sleep(1); |
| 108 | - $count ++; |
|
| 108 | + $count++; |
|
| 109 | 109 | } |
| 110 | 110 | } |
| 111 | 111 | |