From 62dab98906aecb567d7b78d36d08b10161790508 Mon Sep 17 00:00:00 2001 From: Matt Young Date: Fri, 27 Jun 2025 16:24:25 -0500 Subject: [PATCH] Add TODO --- app/Actions/Tabulation/TotalEntryScores.php | 1 + 1 file changed, 1 insertion(+) diff --git a/app/Actions/Tabulation/TotalEntryScores.php b/app/Actions/Tabulation/TotalEntryScores.php index 8da321f..1e2a252 100644 --- a/app/Actions/Tabulation/TotalEntryScores.php +++ b/app/Actions/Tabulation/TotalEntryScores.php @@ -19,6 +19,7 @@ class TotalEntryScores public function __invoke(Entry $entry, bool $force_recalculation = false): void { + // TODO Verify accuracy of calculations, particularly for olympic scoring if ($force_recalculation) { EntryTotalScore::where('entry_id', $entry->id)->delete(); }