소스 검색

Statistic : correctif

develop
Guillaume 1 년 전
부모
커밋
92ea462b3e
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…
취소
저장