fixup! Add normalization and denormalization for RollingDate

This commit is contained in:
Julien Fastré 2025-03-12 10:04:12 +01:00
parent 4f030eb11a
commit 0a21fada42
Signed by: julienfastre
GPG Key ID: BDE2190974723FCB

View File

@ -95,7 +95,7 @@ class RollingDate
return [
'roll' => $this->getRoll(),
'fixed_date' => $this->getFixedDate()?->format(self::NORMALIZATION_FORMAT),
'pivot_date' => $this->getPivotDate()?->format(self::NORMALIZATION_FORMAT),
'pivot_date' => $this->getPivotDate()->format(self::NORMALIZATION_FORMAT),
'v' => 1,
];
}