From 294e3c3a25ca730935fe472b115f778759af1858 Mon Sep 17 00:00:00 2001 From: tristan Date: Tue, 9 Jun 2026 10:05:05 +0200 Subject: [PATCH] feat(rtt) : add isFlatRecovery flag to recovery DTOs --- src/Dto/Rtt/EmployeeRttWeekSummary.php | 1 + src/Dto/Rtt/WeekRecoveryDetail.php | 1 + 2 files changed, 2 insertions(+) diff --git a/src/Dto/Rtt/EmployeeRttWeekSummary.php b/src/Dto/Rtt/EmployeeRttWeekSummary.php index 600a80b..8ee8e86 100644 --- a/src/Dto/Rtt/EmployeeRttWeekSummary.php +++ b/src/Dto/Rtt/EmployeeRttWeekSummary.php @@ -18,5 +18,6 @@ final class EmployeeRttWeekSummary public int $bonus50Minutes = 0, public int $totalMinutes = 0, public int $cumulativeBalanceMinutes = 0, + public bool $isFlatRecovery = false, ) {} } diff --git a/src/Dto/Rtt/WeekRecoveryDetail.php b/src/Dto/Rtt/WeekRecoveryDetail.php index 8254a2a..7899361 100644 --- a/src/Dto/Rtt/WeekRecoveryDetail.php +++ b/src/Dto/Rtt/WeekRecoveryDetail.php @@ -17,5 +17,6 @@ final class WeekRecoveryDetail public int $bonus50Minutes = 0, public int $totalMinutes = 0, public array $dailyMinutes = [], + public bool $isFlatRecovery = false, ) {} }