coding style

This commit is contained in:
ludo
2024-02-22 19:35:51 +01:00
parent 722ea43bc2
commit 64a218afc2
33 changed files with 54 additions and 93 deletions

View File

@@ -27,7 +27,7 @@ trait DateStats
{
$periods = DateRange::getPeriodsLastMonth(12);
$values = self::sumPeriodly($periods, $field, $fieldDate);
return self::buildLabels($periods, $values, 'MMM YY');
}
@@ -46,7 +46,7 @@ trait DateStats
$index = Carbon::parse($period->startDate)->isoFormat($format);
$data[$index] = $values[$key];
}
return $data;
}