From caf0b8b8596edfbb25dd780a4e97d0a7d1977237 Mon Sep 17 00:00:00 2001 From: Matt Young Date: Wed, 26 Jun 2024 00:00:15 -0500 Subject: [PATCH] Minor cleanup --- app/Services/AuditionCacheService.php | 6 +++--- resources/views/tabulation/auditionSeating.blade.php | 2 ++ 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/app/Services/AuditionCacheService.php b/app/Services/AuditionCacheService.php index e1a1300..8c96565 100644 --- a/app/Services/AuditionCacheService.php +++ b/app/Services/AuditionCacheService.php @@ -54,13 +54,13 @@ class AuditionCacheService return $this->getAuditions()->firstWhere('id', $id); } - public function refreshCache() + public function refreshCache(): void { Cache::forget($this->cacheKey); $this->getAuditions(); } - public function clearCache() + public function clearCache(): void { if (App::environment('local')) { Session::flash('success', 'Audition Cache Cleared'); @@ -80,7 +80,7 @@ class AuditionCacheService }); } - public function clearPublishedAuditionsCache() + public function clearPublishedAuditionsCache(): void { Cache::forget('publishedAuditions'); } diff --git a/resources/views/tabulation/auditionSeating.blade.php b/resources/views/tabulation/auditionSeating.blade.php index 9e54b53..c916ff8 100644 --- a/resources/views/tabulation/auditionSeating.blade.php +++ b/resources/views/tabulation/auditionSeating.blade.php @@ -25,3 +25,5 @@ + +{{--TODO deal with unlikely scenario of a doubler is entered for seating on some auditions but not others--}}