@@ -27,7 +27,7 @@ |
||
27 | 27 | |
28 | 28 | exec($command, $output); |
29 | 29 | |
30 | - $count = (int)$output[0] - 2; |
|
30 | + $count = (int) $output[0] - 2; |
|
31 | 31 | |
32 | 32 | if ($count > $this->maxNumber) { |
33 | 33 | $result = new MetricAwareResult(Result::STATUS_FAIL, 'Too many processes found "' . $this->processName . '" (current: ' . $count . ', expected < ' . $this->maxNumber . ').'); |
@@ -64,7 +64,7 @@ |
||
64 | 64 | $details[$identifier]["observedValue"] = $result->getMetricValue(); |
65 | 65 | $details[$identifier]["observedUnit"] = $result->getMetricUnit(); |
66 | 66 | |
67 | - if($result->getMetricType()) { |
|
67 | + if ($result->getMetricType()) { |
|
68 | 68 | $details[$identifier]['metricType'] = $result->getMetricType(); |
69 | 69 | } |
70 | 70 |