mirror of
https://github.com/Karaka-Management/phpOMS.git
synced 2026-01-11 17:58:41 +00:00
Semicolon bug fix
This commit is contained in:
parent
5185b52c91
commit
e97bd27eb0
|
|
@ -146,7 +146,7 @@ class MeasureOfDispersion
|
|||
throw new ZeroDevisionException();
|
||||
}
|
||||
|
||||
$mean = $hasProbability ? Average::weightedAverage($values, $probabilities) : (isset($mean) ? $mean : Average::arithmeticMean($values););
|
||||
$mean = $hasProbability ? Average::weightedAverage($values, $probabilities) : (isset($mean) ? $mean : Average::arithmeticMean($values));
|
||||
$sum = 0;
|
||||
|
||||
foreach ($values as $key => $value) {
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user