Преглед изворни кода

Merge branch 'develop'

master
Guillaume Bourgeois пре 9 месеци
родитељ
комит
055fa1f4c2
1 измењених фајлова са 2 додато и 2 уклоњено
  1. +2
    -2
      Statistic/Statistic.php

+ 2
- 2
Statistic/Statistic.php Прегледај датотеку

@@ -58,8 +58,8 @@ class Statistic
public function setData(string $propertyName, string $key, $value)
{
if (isset($this->properties[$propertyName])) {
$this->properties[$propertyName]['data'][$key] += number_format($value, 2);
$this->properties[$propertyName]['total_period'] += number_format($value, 2);
$this->properties[$propertyName]['data'][$key] += $value;
$this->properties[$propertyName]['total_period'] += $value;
} else {
throw new \Exception('La proprieté "' . $propertyName . '" n\'existe pas ');
}

Loading…
Откажи
Сачувај