Procházet zdrojové kódy

Statistic : correctif

develop
Guillaume před 11 měsíci
rodič
revize
92ea462b3e
1 změnil soubory, kde provedl 2 přidání a 2 odebrání
  1. +2
    -2
      Statistic/Statistic.php

+ 2
- 2
Statistic/Statistic.php Zobrazit soubor

@@ -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 ');
}

Načítá se…
Zrušit
Uložit